天天财经

Anthropic揭Claude Code「省钱6招」!善用快取、/clear降低Token成本

2026-08-22 00:23:37 钜亨网 阅读(8)

Anthropic近日发布一篇部落格文章,针对开发者使用Claude Code时容易出现的Token浪费问题,整理出6项降低成本的实用技巧。

Anthropic揭Claude Code「省钱6招」!善用快取、/clear降低Token成本

官方指出,Claude Code的使用成本不只取决于选用哪个模型,也与推理强度、上下文长度及提示快取是否命中密切相关;若缺乏上下文管理,同一项程式开发任务的成本可能出现数倍差距。

Anthropic建议,开发者完成一项任务后应立即使用「/clear」清除对话,避免前一项工作的档案内容、指令输出与探索过程持续留在上下文中,并在开始工作时就确定模型与推理强度,减少后续切换造成的快取失效。

Anthropic列6招降低Claude Code成本
  1. 在不同任务之间执行「/clear」,避免把之前无关的上下文继续送到模型,进而减少Token消耗。
  2. 开始工作前,先确定好模型和推理强度,因为中途更改其中任何一个,都可能导致提示词快取失效,进而增加Token成本。
  3. 不要只写出档名,而是直接用「@」提及文件,使档案会直接附加到讯息中,省去一次Read调用,并避免Claude再去搜寻档案。
  4. 对输出冗长的指令加上静默参数,或把指令交给子代理执行。因为命令输出会像档案一样加入对话,并且在整个会话期间都会保留。
  5. 在新会话开始时执行一次「/context」。它会显示目前载入的内容(例如 CLAUDE.md 和 MCP 工具定义),方便用户删除不必要的内容。
  6. 暂时离开键盘前执行「/compact」。提示词快取通常一小时后就会过期,而在快取仍然有效时进行对话压缩,成本要低得多。
Claude Code成本关键在Token如何被计算

Anthropic也进一步说明Claude Code背后的Token消耗机制。每次使用者发出指令时,模型首先需要进行「预填充」,读取系统提示词、CLAUDE.md、使用者讯息及过往对话等输入内容;接着进入「解码」(decode)阶段,产生模型回复、思考内容及工具呼叫等输出。

两者的运算方式并不相同。预填充会一次处理输入内容,而解码则是逐个Token产生输出,因此输出Token的成本高于输入Token。

模型本身则决定每个Token的价格,而推理强度会影响Token使用量。

Anthropic指出,推理强度越高,模型需要产生的思考Token越多,因此开发者不应在所有任务上都使用最高推理强度,而应根据工作的复杂程度选择合适的模型与设定。

提示快取成为降低成本的重要工具

在Claude Code的成本结构中,提示快取是另一个关键因素。

Claude Code的请求通常会包含相同的前缀,例如系统提示词、工具定义、CLAUDE.md以及既有对话历史。如果下一次请求的前缀内容与前一次完全一致,系统可以直接使用先前的计算结果,而不必重新处理全部内容。

Anthropic指出,快取读取只要正常输入价的0.1倍,可以直接省掉90%。虽然首次写入快取需要较高成本,但之后的请求可以持续利用既有快取。

不过,快取并非永久有效,而且必须维持连续匹配。Anthropic列出几种可能导致快取失效的情况,包括切换模型、改变推理强度、开启或关闭Fast mode、使用「/compact」重新整理对话、快取逾期,以及长时间后恢复旧会话。

其中,模型与推理强度的切换尤其值得注意。Anthropic指出,不同模型各自拥有独立快取,因此从一个模型切换到另一个模型后,原本的对话历史可能需要重新进行预填充;推理强度同样属于快取条件之一。

此外,Anthropic也提醒使用者注意「opusplan」模式。由于该模式会在不同阶段切换模型,因此进入或离开相关模式都可能造成快取失效,频繁切换可能增加额外成本。

对话越长,累积成本也越高

即使成功利用快取降低重复处理成本,Anthropic仍提醒,对话本身持续膨胀仍会增加Token使用量。

Claude每读取一个档案、执行一次指令,都可能将相关内容加入对话历史。随着工作轮数增加,后续请求需要携带的上下文也会越来越长。

Claude Code设有机制处理过大的命令输出:当输出超过一定长度时,内容会被写入暂存档案,而对话中只保留摘要。不过,较短但仍然庞大的输出仍可能直接留在上下文中。

例如测试工具产生大量测试结果,即使没有超过系统设定的门槛,这些内容仍可能持续占据后续对话空间。

因此,Anthropic再次强调,让命令保持精简、将大型工作交给子代理,以及适时清除或压缩对话,都是降低上下文膨胀的重要方式。

除了「/clear」与「/compact」之外,Anthropic也提到「/rewind」。如果最近几轮对话出现偏离,可以利用「/rewind」移除后续内容,同时保留较早的对话与快取状态。

AI程式开发开始出现「Token管理」能力

从Anthropic整理的这些技巧可以看出,Claude Code的使用效率已不只是模型能力或程式设计技巧的问题,如何管理上下文、控制输出、维持快取及选择适当推理强度,也逐渐成为影响开发成本的重要因素。

对开发者而言,真正需要避免的并非单次使用大量Token,而是在长时间、多轮次的工作流程中,让无关的上下文不断累积,并因模型或设定切换导致原本可以重复利用的快取失效。

Anthropic此次公布的6项建议,核心逻辑也相当明确:让每一次请求只携带真正需要的内容、让能够快取的内容持续命中,并将不必要的大量输出隔离在主对话之外。对于高频率使用Claude Code的开发者而言,这些操作将直接影响相同工作量下的Token消耗。

当前页面数据源:

{
  "settings": {
    "x-powered-by": true,
    "etag": "weak",
    "env": "prd",
    "query parser": "simple",
    "subdomain offset": 2,
    "trust proxy": true,
    "views": [
      "./view"
    ],
    "jsonp callback name": "callback",
    "view options": {
      "debug": false,
      "cache": true,
      "minimize": true,
      "filename": "/www/wwwroot/www.chiefbao.com/view/default/article.html"
    },
    "view engine": "html"
  },
  "template": "default",
  "domain": "www.chiefbao.com",
  "static_url": "/public/view/default/",
  "APP_VERSION": "3.6.0",
  "site": {
    "name": "天天财经",
    "logo": "/public/uploads/default/1779962983540.png",
    "domain": "www.chiefbao.com",
    "email": "[email protected]",
    "wx": null,
    "icp": "陇ICP备2026000567号-2",
    "code": "",
    "json": "",
    "title": "天天财经-提供金融入门知识-投资理财技巧",
    "keywords": "炒外汇入门,外汇投资入门,外汇交易新手,外汇新手入门",
    "description": "天天财经-专业为投资者提供外汇期货股票贵金属入门基础知识,新手炒外汇投资,期货投资,股票投资入门知识,同时提供外汇期货股票学习视频教程,软件下载,推荐书籍,分享炒外汇、炒股票、炒期货投资经验,是投资者理想的金融财经学习网站。",
    "template": "default",
    "uploadWay": "1"
  },
  "nav": [
    {
      "id": 10,
      "pid": 0,
      "name": "首页",
      "pinyin": "home",
      "path": "/home",
      "orderBy": 0,
      "target": "0",
      "status": "0",
      "listView": "list.html",
      "articleView": "article.html",
      "seoTitle": "",
      "seoKeywords": "",
      "seoDescription": "",
      "type": "0",
      "dataConfig": null,
      "children": [
        {
          "id": 32,
          "pid": 10,
          "name": "外汇平台排名",
          "pinyin": "platrange",
          "path": "/home/platrange",
          "orderBy": 0,
          "target": "0",
          "status": "1",
          "listView": "list.html",
          "articleView": "article.html",
          "seoTitle": "",
          "seoKeywords": "",
          "seoDescription": "",
          "type": "0",
          "dataConfig": null,
          "level": 1
        },
        {
          "id": 34,
          "pid": 10,
          "name": "保险",
          "pinyin": "baoxian",
          "path": "/home/baoxian",
          "orderBy": 0,
          "target": "0",
          "status": "1",
          "listView": "list.html",
          "articleView": "article.html",
          "seoTitle": "",
          "seoKeywords": "",
          "seoDescription": "",
          "type": "0",
          "dataConfig": null,
          "children": [
            {
              "id": 48,
              "pid": 34,
              "name": "保险入门",
              "pinyin": "bxrm",
              "path": "/home/baoxian/bxrm",
              "orderBy": 0,
              "target": "0",
              "status": "1",
              "listView": "list.html",
              "articleView": "article.html",
              "seoTitle": "",
              "seoKeywords": "",
              "seoDescription": "",
              "type": "0",
              "dataConfig": null,
              "level": 1
            }
          ],
          "level": 1
        },
        {
          "id": 35,
          "pid": 10,
          "name": "贵金属",
          "pinyin": "guijinshu",
          "path": "/home/guijinshu",
          "orderBy": 0,
          "target": "0",
          "status": "1",
          "listView": "list.html",
          "articleView": "article.html",
          "seoTitle": "",
          "seoKeywords": "",
          "seoDescription": "",
          "type": "0",
          "dataConfig": null,
          "children": [
            {
              "id": 49,
              "pid": 35,
              "name": "贵金属入门",
              "pinyin": "fjsrm",
              "path": "/home/guijinshu/fjsrm",
              "orderBy": 0,
              "target": "0",
              "status": "0",
              "listView": "list.html",
              "articleView": "article.html",
              "seoTitle": "",
              "seoKeywords": "",
              "seoDescription": "",
              "type": "0",
              "dataConfig": null,
              "level": 1
            },
            {
              "id": 50,
              "pid": 35,
              "name": "贵金属投资",
              "pinyin": "gjstz",
              "path": "/home/guijinshu/gjstz",
              "orderBy": 0,
              "target": "0",
              "status": "1",
              "listView": "list.html",
              "articleView": "article.html",
              "seoTitle": "",
              "seoKeywords": "",
              "seoDescription": "",
              "type": "0",
              "dataConfig": null,
              "level": 1
            }
          ],
          "level": 1
        },
        {
          "id": 36,
          "pid": 10,
          "name": "期货",
          "pinyin": "qihuo",
          "path": "/home/qihuo",
          "orderBy": 0,
          "target": "0",
          "status": "1",
          "listView": "list.html",
          "articleView": "article.html",
          "seoTitle": "",
          "seoKeywords": "",
          "seoDescription": "",
          "type": "0",
          "dataConfig": null,
          "children": [
            {
              "id": 41,
              "pid": 36,
              "name": "期货入门",
              "pinyin": "qhrm",
              "path": "/home/qihuo/qhrm",
              "orderBy": 0,
              "target": "0",
              "status": "1",
              "listView": "list.html",
              "articleView": "article.html",
              "seoTitle": "",
              "seoKeywords": "",
              "seoDescription": "",
              "type": "0",
              "dataConfig": null,
              "level": 1
            },
            {
              "id": 42,
              "pid": 36,
              "name": "期货交易",
              "pinyin": "qhjy",
              "path": "/home/qihuo/qhjy",
              "orderBy": 0,
              "target": "0",
              "status": "1",
              "listView": "list.html",
              "articleView": "article.html",
              "seoTitle": "",
              "seoKeywords": "",
              "seoDescription": "",
              "type": "0",
              "dataConfig": null,
              "level": 1
            },
            {
              "id": 43,
              "pid": 36,
              "name": "股指期货",
              "pinyin": "fzqh",
              "path": "/home/qihuo/fzqh",
              "orderBy": 0,
              "target": "0",
              "status": "1",
              "listView": "list.html",
              "articleView": "article.html",
              "seoTitle": "",
              "seoKeywords": "",
              "seoDescription": "",
              "type": "0",
              "dataConfig": null,
              "level": 1
            },
            {
              "id": 44,
              "pid": 36,
              "name": "原油期货",
              "pinyin": "yyqh",
              "path": "/home/qihuo/yyqh",
              "orderBy": 0,
              "target": "0",
              "status": "0",
              "listView": "list.html",
              "articleView": "article.html",
              "seoTitle": "",
              "seoKeywords": "",
              "seoDescription": "",
              "type": "0",
              "dataConfig": null,
              "level": 1
            },
            {
              "id": 45,
              "pid": 36,
              "name": "期货公司",
              "pinyin": "qhgs",
              "path": "/home/qihuo/qhgs",
              "orderBy": 0,
              "target": "0",
              "status": "1",
              "listView": "list.html",
              "articleView": "article.html",
              "seoTitle": "",
              "seoKeywords": "",
              "seoDescription": "",
              "type": "0",
              "dataConfig": null,
              "level": 1
            },
            {
              "id": 46,
              "pid": 36,
              "name": "期货开户",
              "pinyin": "qhkh",
              "path": "/home/qihuo/qhkh",
              "orderBy": 0,
              "target": "0",
              "status": "1",
              "listView": "list.html",
              "articleView": "article.html",
              "seoTitle": "",
              "seoKeywords": "",
              "seoDescription": "",
              "type": "0",
              "dataConfig": null,
              "level": 1
            },
            {
              "id": 47,
              "pid": 36,
              "name": "期货交易所",
              "pinyin": "qhjys",
              "path": "/home/qihuo/qhjys",
              "orderBy": 0,
              "target": "0",
              "status": "0",
              "listView": "list.html",
              "articleView": "article.html",
              "seoTitle": "",
              "seoKeywords": "",
              "seoDescription": "",
              "type": "0",
              "dataConfig": null,
              "level": 1
            }
          ],
          "level": 1
        },
        {
          "id": 37,
          "pid": 10,
          "name": "股票",
          "pinyin": "gupiao",
          "path": "/home/gupiao",
          "orderBy": 0,
          "target": "0",
          "status": "1",
          "listView": "list.html",
          "articleView": "article.html",
          "seoTitle": "",
          "seoKeywords": "",
          "seoDescription": "",
          "type": "0",
          "dataConfig": null,
          "children": [
            {
              "id": 51,
              "pid": 37,
              "name": "股票入门",
              "pinyin": "gprm",
              "path": "/home/gupiao/gprm",
              "orderBy": 0,
              "target": "0",
              "status": "1",
              "listView": "list.html",
              "articleView": "article.html",
              "seoTitle": "",
              "seoKeywords": "",
              "seoDescription": "",
              "type": "0",
              "dataConfig": null,
              "level": 1
            },
            {
              "id": 52,
              "pid": 37,
              "name": "股票投资",
              "pinyin": "gptz",
              "path": "/home/gupiao/gptz",
              "orderBy": 0,
              "target": "0",
              "status": "1",
              "listView": "list.html",
              "articleView": "article.html",
              "seoTitle": "",
              "seoKeywords": "",
              "seoDescription": "",
              "type": "0",
              "dataConfig": null,
              "level": 1
            },
            {
              "id": 53,
              "pid": 37,
              "name": "股票交易",
              "pinyin": "gpjy",
              "path": "/home/gupiao/gpjy",
              "orderBy": 0,
              "target": "0",
              "status": "1",
              "listView": "list.html",
              "articleView": "article.html",
              "seoTitle": "",
              "seoKeywords": "",
              "seoDescription": "",
              "type": "0",
              "dataConfig": null,
              "level": 1
            }
          ],
          "level": 1
        },
        {
          "id": 38,
          "pid": 10,
          "name": "证券",
          "pinyin": "zhengquan",
          "path": "/home/zhengquan",
          "orderBy": 0,
          "target": "0",
          "status": "1",
          "listView": "list.html",
          "articleView": "article.html",
          "seoTitle": "",
          "seoKeywords": "",
          "seoDescription": "",
          "type": "0",
          "dataConfig": null,
          "children": [
            {
              "id": 54,
              "pid": 38,
              "name": "证券入门",
              "pinyin": "zqrm",
              "path": "/home/zhengquan/zqrm",
              "orderBy": 0,
              "target": "0",
              "status": "1",
              "listView": "list.html",
              "articleView": "article.html",
              "seoTitle": "",
              "seoKeywords": "",
              "seoDescription": "",
              "type": "0",
              "dataConfig": null,
              "level": 1
            }
          ],
          "level": 1
        },
        {
          "id": 39,
          "pid": 10,
          "name": "区块链",
          "pinyin": "qukuailian",
          "path": "/home/qukuailian",
          "orderBy": 0,
          "target": "0",
          "status": "1",
          "listView": "list.html",
          "articleView": "article.html",
          "seoTitle": "",
          "seoKeywords": "",
          "seoDescription": "",
          "type": "0",
          "dataConfig": null,
          "children": [
            {
              "id": 55,
              "pid": 39,
              "name": "区块链入门",
              "pinyin": "qklrm",
              "path": "/home/qukuailian/qklrm",
              "orderBy": 0,
              "target": "0",
              "status": "1",
              "listView": "list.html",
              "articleView": "article.html",
              "seoTitle": "",
              "seoKeywords": "",
              "seoDescription": "",
              "type": "0",
              "dataConfig": null,
              "level": 1
            }
          ],
          "level": 1
        },
        {
          "id": 40,
          "pid": 10,
          "name": "黄金",
          "pinyin": "huangjin",
          "path": "/home/huangjin",
          "orderBy": 0,
          "target": "0",
          "status": "1",
          "listView": "list.html",
          "articleView": "article.html",
          "seoTitle": "",
          "seoKeywords": "",
          "seoDescription": "",
          "type": "0",
          "dataConfig": null,
          "children": [
            {
              "id": 56,
              "pid": 40,
              "name": "黄金入门",
              "pinyin": "hjrm",
              "path": "/home/huangjin/hjrm",
              "orderBy": 0,
              "target": "0",
              "status": "1",
              "listView": "list.html",
              "articleView": "article.html",
              "seoTitle": "",
              "seoKeywords": "",
              "seoDescription": "",
              "type": "0",
              "dataConfig": null,
              "level": 1
            },
            {
              "id": 57,
              "pid": 40,
              "name": "黄金投资",
              "pinyin": "hjtz",
              "path": "/home/huangjin/hjtz",
              "orderBy": 0,
              "target": "0",
              "status": "1",
              "listView": "list.html",
              "articleView": "article.html",
              "seoTitle": "",
              "seoKeywords": "",
              "seoDescription": "",
              "type": "0",
              "dataConfig": null,
              "level": 1
            },
            {
              "id": 58,
              "pid": 40,
              "name": "黄金期货",
              "pinyin": "hjqh",
              "path": "/home/huangjin/hjqh",
              "orderBy": 0,
              "target": "0",
              "status": "1",
              "listView": "list.html",
              "articleView": "article.html",
              "seoTitle": "",
              "seoKeywords": "",
              "seoDescription": "",
              "type": "0",
              "dataConfig": null,
              "level": 1
            },
            {
              "id": 59,
              "pid": 40,
              "name": "黄金现货",
              "pinyin": "hjxh",
              "path": "/home/huangjin/hjxh",
              "orderBy": 0,
              "target": "0",
              "status": "1",
              "listView": "list.html",
              "articleView": "article.html",
              "seoTitle": "",
              "seoKeywords": "",
              "seoDescription": "",
              "type": "0",
              "dataConfig": null,
              "level": 1
            },
            {
              "id": 60,
              "pid": 40,
              "name": "黄金交易",
              "pinyin": "hjjy",
              "path": "/home/huangjin/hjjy",
              "orderBy": 0,
              "target": "0",
              "status": "1",
              "listView": "list.html",
              "articleView": "article.html",
              "seoTitle": "",
              "seoKeywords": "",
              "seoDescription": "",
              "type": "0",
              "dataConfig": null,
              "level": 1
            }
          ],
          "level": 1
        },
        {
          "id": 61,
          "pid": 10,
          "name": "基金",
          "pinyin": "jijin",
          "path": "/home/jijin",
          "orderBy": 0,
          "target": "0",
          "status": "0",
          "listView": "list.html",
          "articleView": "article.html",
          "seoTitle": "",
          "seoKeywords": "",
          "seoDescription": "",
          "type": "0",
          "dataConfig": null,
          "children": [
            {
              "id": 62,
              "pid": 61,
              "name": "基金入门",
              "pinyin": "jjrm",
              "path": "/home/jijin/jjrm",
              "orderBy": 0,
              "target": "0",
              "status": "1",
              "listView": "list.html",
              "articleView": "article.html",
              "seoTitle": "",
              "seoKeywords": "",
              "seoDescription": "",
              "type": "0",
              "dataConfig": null,
              "level": 1
            }
          ],
          "level": 1
        },
        {
          "id": 71,
          "pid": 10,
          "name": "经纪商 ",
          "pinyin": "jjs",
          "path": "/home/jjs",
          "orderBy": 0,
          "target": "0",
          "status": "1",
          "listView": "list.html",
          "articleView": "article.html",
          "seoTitle": "",
          "seoKeywords": "",
          "seoDescription": "",
          "type": "0",
          "dataConfig": null,
          "level": 1
        }
      ],
      "level": 1
    },
    {
      "id": 15,
      "pid": 0,
      "name": "热点新闻",
      "pinyin": "new",
      "path": "/new",
      "orderBy": 0,
      "target": "0",
      "status": "0",
      "listView": "list.html",
      "articleView": "article.html",
      "seoTitle": "",
      "seoKeywords": "",
      "seoDescription": "",
      "type": "0",
      "dataConfig": null,
      "children": [
        {
          "id": 25,
          "pid": 15,
          "name": "美股",
          "pinyin": "mg",
          "path": "/new/mg",
          "orderBy": 0,
          "target": "0",
          "status": "0",
          "listView": "list.html",
          "articleView": "article.html",
          "seoTitle": "",
          "seoKeywords": "",
          "seoDescription": "",
          "type": "0",
          "dataConfig": null,
          "level": 1
        },
        {
          "id": 26,
          "pid": 15,
          "name": "港股",
          "pinyin": "hk",
          "path": "/new/hk",
          "orderBy": 0,
          "target": "0",
          "status": "0",
          "listView": "list.html",
          "articleView": "article.html",
          "seoTitle": "",
          "seoKeywords": "",
          "seoDescription": "",
          "type": "0",
          "dataConfig": null,
          "level": 1
        },
        {
          "id": 27,
          "pid": 15,
          "name": "台股",
          "pinyin": "tw",
          "path": "/new/tw",
          "orderBy": 0,
          "target": "0",
          "status": "0",
          "listView": "list.html",
          "articleView": "article.html",
          "seoTitle": "",
          "seoKeywords": "",
          "seoDescription": "",
          "type": "0",
          "dataConfig": null,
          "level": 1
        },
        {
          "id": 28,
          "pid": 15,
          "name": "科技",
          "pinyin": "AI",
          "path": "/new/AI",
          "orderBy": 0,
          "target": "0",
          "status": "0",
          "listView": "list.html",
          "articleView": "article.html",
          "seoTitle": "",
          "seoKeywords": "",
          "seoDescription": "",
          "type": "0",
          "dataConfig": null,
          "level": 1
        }
      ],
      "level": 1
    },
    {
      "id": 17,
      "pid": 0,
      "name": "外汇行情",
      "pinyin": "whhq",
      "path": "/whhq",
      "orderBy": 0,
      "target": "0",
      "status": "0",
      "listView": "list.html",
      "articleView": "article.html",
      "seoTitle": "",
      "seoKeywords": "",
      "seoDescription": "",
      "type": "0",
      "dataConfig": null,
      "level": 1
    },
    {
      "id": 18,
      "pid": 0,
      "name": "外汇平台",
      "pinyin": "whplat",
      "path": "/whplat",
      "orderBy": 0,
      "target": "0",
      "status": "0",
      "listView": "list.html",
      "articleView": "article.html",
      "seoTitle": "",
      "seoKeywords": "",
      "seoDescription": "",
      "type": "0",
      "dataConfig": null,
      "level": 1
    },
    {
      "id": 19,
      "pid": 0,
      "name": "外汇开户",
      "pinyin": "whkh",
      "path": "/whkh",
      "orderBy": 0,
      "target": "0",
      "status": "0",
      "listView": "list.html",
      "articleView": "article.html",
      "seoTitle": "",
      "seoKeywords": "",
      "seoDescription": "",
      "type": "0",
      "dataConfig": null,
      "level": 1
    },
    {
      "id": 20,
      "pid": 0,
      "name": "外汇策略",
      "pinyin": "whcl",
      "path": "/whcl",
      "orderBy": 0,
      "target": "0",
      "status": "0",
      "listView": "list.html",
      "articleView": "article.html",
      "seoTitle": "",
      "seoKeywords": "",
      "seoDescription": "",
      "type": "0",
      "dataConfig": null,
      "level": 1
    },
    {
      "id": 21,
      "pid": 0,
      "name": "外汇入门",
      "pinyin": "whrm",
      "path": "/whrm",
      "orderBy": 0,
      "target": "0",
      "status": "0",
      "listView": "list.html",
      "articleView": "article.html",
      "seoTitle": "",
      "seoKeywords": "",
      "seoDescription": "",
      "type": "0",
      "dataConfig": null,
      "level": 1
    },
    {
      "id": 22,
      "pid": 0,
      "name": "外汇交易",
      "pinyin": "whjy",
      "path": "/whjy",
      "orderBy": 0,
      "target": "0",
      "status": "0",
      "listView": "list.html",
      "articleView": "article.html",
      "seoTitle": "",
      "seoKeywords": "",
      "seoDescription": "",
      "type": "0",
      "dataConfig": null,
      "level": 1
    },
    {
      "id": 23,
      "pid": 0,
      "name": "曝光台",
      "pinyin": "bgt",
      "path": "/bgt",
      "orderBy": 0,
      "target": "0",
      "status": "0",
      "listView": "list-expose.html",
      "articleView": "article.html",
      "seoTitle": "",
      "seoKeywords": "",
      "seoDescription": "",
      "type": "0",
      "dataConfig": null,
      "level": 1
    },
    {
      "id": 24,
      "pid": 0,
      "name": "广告合作",
      "pinyin": "gghz",
      "path": "/gghz",
      "orderBy": 0,
      "target": "0",
      "status": "1",
      "listView": "list.html",
      "articleView": "article.html",
      "seoTitle": "",
      "seoKeywords": "",
      "seoDescription": "",
      "type": "0",
      "dataConfig": null,
      "level": 1
    },
    {
      "id": 30,
      "pid": 0,
      "name": "实时",
      "pinyin": "hour",
      "path": "/hour",
      "orderBy": 0,
      "target": "0",
      "status": "0",
      "listView": "list.html",
      "articleView": "article.html",
      "seoTitle": "",
      "seoKeywords": "",
      "seoDescription": "",
      "type": "0",
      "dataConfig": null,
      "level": 1
    },
    {
      "id": 33,
      "pid": 0,
      "name": "广告招商",
      "pinyin": "ggzs",
      "path": "/ggzs",
      "orderBy": 0,
      "target": "0",
      "status": "1",
      "listView": "list.html",
      "articleView": "article.html",
      "seoTitle": "",
      "seoKeywords": "",
      "seoDescription": "",
      "type": "0",
      "dataConfig": null,
      "level": 1
    },
    {
      "id": 65,
      "pid": 0,
      "name": "外汇经纪商",
      "pinyin": "whjjs",
      "path": "/whjjs",
      "orderBy": 0,
      "target": "0",
      "status": "0",
      "listView": "list.html",
      "articleView": "article.html",
      "seoTitle": "",
      "seoKeywords": "",
      "seoDescription": "",
      "type": "0",
      "dataConfig": null,
      "children": [
        {
          "id": 66,
          "pid": 65,
          "name": "XM外汇",
          "pinyin": "smfx",
          "path": "/whjjs/smfx",
          "orderBy": 0,
          "target": "0",
          "status": "0",
          "listView": "list.html",
          "articleView": "article.html",
          "seoTitle": "",
          "seoKeywords": "",
          "seoDescription": "",
          "type": "0",
          "dataConfig": null,
          "level": 1
        },
        {
          "id": 67,
          "pid": 65,
          "name": "Exness外汇",
          "pinyin": "exfx",
          "path": "/whjjs/exfx",
          "orderBy": 0,
          "target": "0",
          "status": "0",
          "listView": "list.html",
          "articleView": "article.html",
          "seoTitle": "",
          "seoKeywords": "",
          "seoDescription": "",
          "type": "0",
          "dataConfig": null,
          "level": 1
        },
        {
          "id": 68,
          "pid": 65,
          "name": "TMGM外汇",
          "pinyin": "tmgmfx",
          "path": "/whjjs/tmgmfx",
          "orderBy": 0,
          "target": "0",
          "status": "0",
          "listView": "list.html",
          "articleView": "article.html",
          "seoTitle": "",
          "seoKeywords": "",
          "seoDescription": "",
          "type": "0",
          "dataConfig": null,
          "level": 1
        },
        {
          "id": 69,
          "pid": 65,
          "name": "Doo Prime德璞资本",
          "pinyin": "doo",
          "path": "/whjjs/doo",
          "orderBy": 0,
          "target": "0",
          "status": "0",
          "listView": "list.html",
          "articleView": "article.html",
          "seoTitle": "",
          "seoKeywords": "",
          "seoDescription": "",
          "type": "0",
          "dataConfig": null,
          "level": 1
        },
        {
          "id": 70,
          "pid": 65,
          "name": "FXTM富拓",
          "pinyin": "fxtm",
          "path": "/whjjs/fxtm",
          "orderBy": 0,
          "target": "0",
          "status": "0",
          "listView": "list.html",
          "articleView": "article.html",
          "seoTitle": "",
          "seoKeywords": "",
          "seoDescription": "",
          "type": "0",
          "dataConfig": null,
          "level": 1
        },
        {
          "id": 72,
          "pid": 65,
          "name": "EC外汇",
          "pinyin": "ecfx",
          "path": "/whjjs/ecfx",
          "orderBy": 0,
          "target": "0",
          "status": "0",
          "listView": "list.html",
          "articleView": "article.html",
          "seoTitle": "",
          "seoKeywords": "",
          "seoDescription": "",
          "type": "0",
          "dataConfig": null,
          "level": 1
        }
      ],
      "level": 1
    }
  ],
  "category": [
    {
      "id": 10,
      "pid": 0,
      "name": "首页",
      "pinyin": "home",
      "path": "/home",
      "orderBy": 0,
      "target": "0",
      "status": "0",
      "listView": "list.html",
      "articleView": "article.html",
      "seoTitle": "",
      "seoKeywords": "",
      "seoDescription": "",
      "type": "0",
      "dataConfig": null,
      "children": [
        {
          "id": 32,
          "pid": 10,
          "name": "外汇平台排名",
          "pinyin": "platrange",
          "path": "/home/platrange",
          "orderBy": 0,
          "target": "0",
          "status": "1",
          "listView": "list.html",
          "articleView": "article.html",
          "seoTitle": "",
          "seoKeywords": "",
          "seoDescription": "",
          "type": "0",
          "dataConfig": null,
          "level": 1
        },
        {
          "id": 34,
          "pid": 10,
          "name": "保险",
          "pinyin": "baoxian",
          "path": "/home/baoxian",
          "orderBy": 0,
          "target": "0",
          "status": "1",
          "listView": "list.html",
          "articleView": "article.html",
          "seoTitle": "",
          "seoKeywords": "",
          "seoDescription": "",
          "type": "0",
          "dataConfig": null,
          "children": [
            {
              "id": 48,
              "pid": 34,
              "name": "保险入门",
              "pinyin": "bxrm",
              "path": "/home/baoxian/bxrm",
              "orderBy": 0,
              "target": "0",
              "status": "1",
              "listView": "list.html",
              "articleView": "article.html",
              "seoTitle": "",
              "seoKeywords": "",
              "seoDescription": "",
              "type": "0",
              "dataConfig": null,
              "level": 1
            }
          ],
          "level": 1
        },
        {
          "id": 35,
          "pid": 10,
          "name": "贵金属",
          "pinyin": "guijinshu",
          "path": "/home/guijinshu",
          "orderBy": 0,
          "target": "0",
          "status": "1",
          "listView": "list.html",
          "articleView": "article.html",
          "seoTitle": "",
          "seoKeywords": "",
          "seoDescription": "",
          "type": "0",
          "dataConfig": null,
          "children": [
            {
              "id": 49,
              "pid": 35,
              "name": "贵金属入门",
              "pinyin": "fjsrm",
              "path": "/home/guijinshu/fjsrm",
              "orderBy": 0,
              "target": "0",
              "status": "0",
              "listView": "list.html",
              "articleView": "article.html",
              "seoTitle": "",
              "seoKeywords": "",
              "seoDescription": "",
              "type": "0",
              "dataConfig": null,
              "level": 1
            },
            {
              "id": 50,
              "pid": 35,
              "name": "贵金属投资",
              "pinyin": "gjstz",
              "path": "/home/guijinshu/gjstz",
              "orderBy": 0,
              "target": "0",
              "status": "1",
              "listView": "list.html",
              "articleView": "article.html",
              "seoTitle": "",
              "seoKeywords": "",
              "seoDescription": "",
              "type": "0",
              "dataConfig": null,
              "level": 1
            }
          ],
          "level": 1
        },
        {
          "id": 36,
          "pid": 10,
          "name": "期货",
          "pinyin": "qihuo",
          "path": "/home/qihuo",
          "orderBy": 0,
          "target": "0",
          "status": "1",
          "listView": "list.html",
          "articleView": "article.html",
          "seoTitle": "",
          "seoKeywords": "",
          "seoDescription": "",
          "type": "0",
          "dataConfig": null,
          "children": [
            {
              "id": 41,
              "pid": 36,
              "name": "期货入门",
              "pinyin": "qhrm",
              "path": "/home/qihuo/qhrm",
              "orderBy": 0,
              "target": "0",
              "status": "1",
              "listView": "list.html",
              "articleView": "article.html",
              "seoTitle": "",
              "seoKeywords": "",
              "seoDescription": "",
              "type": "0",
              "dataConfig": null,
              "level": 1
            },
            {
              "id": 42,
              "pid": 36,
              "name": "期货交易",
              "pinyin": "qhjy",
              "path": "/home/qihuo/qhjy",
              "orderBy": 0,
              "target": "0",
              "status": "1",
              "listView": "list.html",
              "articleView": "article.html",
              "seoTitle": "",
              "seoKeywords": "",
              "seoDescription": "",
              "type": "0",
              "dataConfig": null,
              "level": 1
            },
            {
              "id": 43,
              "pid": 36,
              "name": "股指期货",
              "pinyin": "fzqh",
              "path": "/home/qihuo/fzqh",
              "orderBy": 0,
              "target": "0",
              "status": "1",
              "listView": "list.html",
              "articleView": "article.html",
              "seoTitle": "",
              "seoKeywords": "",
              "seoDescription": "",
              "type": "0",
              "dataConfig": null,
              "level": 1
            },
            {
              "id": 44,
              "pid": 36,
              "name": "原油期货",
              "pinyin": "yyqh",
              "path": "/home/qihuo/yyqh",
              "orderBy": 0,
              "target": "0",
              "status": "0",
              "listView": "list.html",
              "articleView": "article.html",
              "seoTitle": "",
              "seoKeywords": "",
              "seoDescription": "",
              "type": "0",
              "dataConfig": null,
              "level": 1
            },
            {
              "id": 45,
              "pid": 36,
              "name": "期货公司",
              "pinyin": "qhgs",
              "path": "/home/qihuo/qhgs",
              "orderBy": 0,
              "target": "0",
              "status": "1",
              "listView": "list.html",
              "articleView": "article.html",
              "seoTitle": "",
              "seoKeywords": "",
              "seoDescription": "",
              "type": "0",
              "dataConfig": null,
              "level": 1
            },
            {
              "id": 46,
              "pid": 36,
              "name": "期货开户",
              "pinyin": "qhkh",
              "path": "/home/qihuo/qhkh",
              "orderBy": 0,
              "target": "0",
              "status": "1",
              "listView": "list.html",
              "articleView": "article.html",
              "seoTitle": "",
              "seoKeywords": "",
              "seoDescription": "",
              "type": "0",
              "dataConfig": null,
              "level": 1
            },
            {
              "id": 47,
              "pid": 36,
              "name": "期货交易所",
              "pinyin": "qhjys",
              "path": "/home/qihuo/qhjys",
              "orderBy": 0,
              "target": "0",
              "status": "0",
              "listView": "list.html",
              "articleView": "article.html",
              "seoTitle": "",
              "seoKeywords": "",
              "seoDescription": "",
              "type": "0",
              "dataConfig": null,
              "level": 1
            }
          ],
          "level": 1
        },
        {
          "id": 37,
          "pid": 10,
          "name": "股票",
          "pinyin": "gupiao",
          "path": "/home/gupiao",
          "orderBy": 0,
          "target": "0",
          "status": "1",
          "listView": "list.html",
          "articleView": "article.html",
          "seoTitle": "",
          "seoKeywords": "",
          "seoDescription": "",
          "type": "0",
          "dataConfig": null,
          "children": [
            {
              "id": 51,
              "pid": 37,
              "name": "股票入门",
              "pinyin": "gprm",
              "path": "/home/gupiao/gprm",
              "orderBy": 0,
              "target": "0",
              "status": "1",
              "listView": "list.html",
              "articleView": "article.html",
              "seoTitle": "",
              "seoKeywords": "",
              "seoDescription": "",
              "type": "0",
              "dataConfig": null,
              "level": 1
            },
            {
              "id": 52,
              "pid": 37,
              "name": "股票投资",
              "pinyin": "gptz",
              "path": "/home/gupiao/gptz",
              "orderBy": 0,
              "target": "0",
              "status": "1",
              "listView": "list.html",
              "articleView": "article.html",
              "seoTitle": "",
              "seoKeywords": "",
              "seoDescription": "",
              "type": "0",
              "dataConfig": null,
              "level": 1
            },
            {
              "id": 53,
              "pid": 37,
              "name": "股票交易",
              "pinyin": "gpjy",
              "path": "/home/gupiao/gpjy",
              "orderBy": 0,
              "target": "0",
              "status": "1",
              "listView": "list.html",
              "articleView": "article.html",
              "seoTitle": "",
              "seoKeywords": "",
              "seoDescription": "",
              "type": "0",
              "dataConfig": null,
              "level": 1
            }
          ],
          "level": 1
        },
        {
          "id": 38,
          "pid": 10,
          "name": "证券",
          "pinyin": "zhengquan",
          "path": "/home/zhengquan",
          "orderBy": 0,
          "target": "0",
          "status": "1",
          "listView": "list.html",
          "articleView": "article.html",
          "seoTitle": "",
          "seoKeywords": "",
          "seoDescription": "",
          "type": "0",
          "dataConfig": null,
          "children": [
            {
              "id": 54,
              "pid": 38,
              "name": "证券入门",
              "pinyin": "zqrm",
              "path": "/home/zhengquan/zqrm",
              "orderBy": 0,
              "target": "0",
              "status": "1",
              "listView": "list.html",
              "articleView": "article.html",
              "seoTitle": "",
              "seoKeywords": "",
              "seoDescription": "",
              "type": "0",
              "dataConfig": null,
              "level": 1
            }
          ],
          "level": 1
        },
        {
          "id": 39,
          "pid": 10,
          "name": "区块链",
          "pinyin": "qukuailian",
          "path": "/home/qukuailian",
          "orderBy": 0,
          "target": "0",
          "status": "1",
          "listView": "list.html",
          "articleView": "article.html",
          "seoTitle": "",
          "seoKeywords": "",
          "seoDescription": "",
          "type": "0",
          "dataConfig": null,
          "children": [
            {
              "id": 55,
              "pid": 39,
              "name": "区块链入门",
              "pinyin": "qklrm",
              "path": "/home/qukuailian/qklrm",
              "orderBy": 0,
              "target": "0",
              "status": "1",
              "listView": "list.html",
              "articleView": "article.html",
              "seoTitle": "",
              "seoKeywords": "",
              "seoDescription": "",
              "type": "0",
              "dataConfig": null,
              "level": 1
            }
          ],
          "level": 1
        },
        {
          "id": 40,
          "pid": 10,
          "name": "黄金",
          "pinyin": "huangjin",
          "path": "/home/huangjin",
          "orderBy": 0,
          "target": "0",
          "status": "1",
          "listView": "list.html",
          "articleView": "article.html",
          "seoTitle": "",
          "seoKeywords": "",
          "seoDescription": "",
          "type": "0",
          "dataConfig": null,
          "children": [
            {
              "id": 56,
              "pid": 40,
              "name": "黄金入门",
              "pinyin": "hjrm",
              "path": "/home/huangjin/hjrm",
              "orderBy": 0,
              "target": "0",
              "status": "1",
              "listView": "list.html",
              "articleView": "article.html",
              "seoTitle": "",
              "seoKeywords": "",
              "seoDescription": "",
              "type": "0",
              "dataConfig": null,
              "level": 1
            },
            {
              "id": 57,
              "pid": 40,
              "name": "黄金投资",
              "pinyin": "hjtz",
              "path": "/home/huangjin/hjtz",
              "orderBy": 0,
              "target": "0",
              "status": "1",
              "listView": "list.html",
              "articleView": "article.html",
              "seoTitle": "",
              "seoKeywords": "",
              "seoDescription": "",
              "type": "0",
              "dataConfig": null,
              "level": 1
            },
            {
              "id": 58,
              "pid": 40,
              "name": "黄金期货",
              "pinyin": "hjqh",
              "path": "/home/huangjin/hjqh",
              "orderBy": 0,
              "target": "0",
              "status": "1",
              "listView": "list.html",
              "articleView": "article.html",
              "seoTitle": "",
              "seoKeywords": "",
              "seoDescription": "",
              "type": "0",
              "dataConfig": null,
              "level": 1
            },
            {
              "id": 59,
              "pid": 40,
              "name": "黄金现货",
              "pinyin": "hjxh",
              "path": "/home/huangjin/hjxh",
              "orderBy": 0,
              "target": "0",
              "status": "1",
              "listView": "list.html",
              "articleView": "article.html",
              "seoTitle": "",
              "seoKeywords": "",
              "seoDescription": "",
              "type": "0",
              "dataConfig": null,
              "level": 1
            },
            {
              "id": 60,
              "pid": 40,
              "name": "黄金交易",
              "pinyin": "hjjy",
              "path": "/home/huangjin/hjjy",
              "orderBy": 0,
              "target": "0",
              "status": "1",
              "listView": "list.html",
              "articleView": "article.html",
              "seoTitle": "",
              "seoKeywords": "",
              "seoDescription": "",
              "type": "0",
              "dataConfig": null,
              "level": 1
            }
          ],
          "level": 1
        },
        {
          "id": 61,
          "pid": 10,
          "name": "基金",
          "pinyin": "jijin",
          "path": "/home/jijin",
          "orderBy": 0,
          "target": "0",
          "status": "0",
          "listView": "list.html",
          "articleView": "article.html",
          "seoTitle": "",
          "seoKeywords": "",
          "seoDescription": "",
          "type": "0",
          "dataConfig": null,
          "children": [
            {
              "id": 62,
              "pid": 61,
              "name": "基金入门",
              "pinyin": "jjrm",
              "path": "/home/jijin/jjrm",
              "orderBy": 0,
              "target": "0",
              "status": "1",
              "listView": "list.html",
              "articleView": "article.html",
              "seoTitle": "",
              "seoKeywords": "",
              "seoDescription": "",
              "type": "0",
              "dataConfig": null,
              "level": 1
            }
          ],
          "level": 1
        },
        {
          "id": 71,
          "pid": 10,
          "name": "经纪商 ",
          "pinyin": "jjs",
          "path": "/home/jjs",
          "orderBy": 0,
          "target": "0",
          "status": "1",
          "listView": "list.html",
          "articleView": "article.html",
          "seoTitle": "",
          "seoKeywords": "",
          "seoDescription": "",
          "type": "0",
          "dataConfig": null,
          "level": 1
        }
      ],
      "level": 1
    },
    {
      "id": 15,
      "pid": 0,
      "name": "热点新闻",
      "pinyin": "new",
      "path": "/new",
      "orderBy": 0,
      "target": "0",
      "status": "0",
      "listView": "list.html",
      "articleView": "article.html",
      "seoTitle": "",
      "seoKeywords": "",
      "seoDescription": "",
      "type": "0",
      "dataConfig": null,
      "children": [
        {
          "id": 25,
          "pid": 15,
          "name": "美股",
          "pinyin": "mg",
          "path": "/new/mg",
          "orderBy": 0,
          "target": "0",
          "status": "0",
          "listView": "list.html",
          "articleView": "article.html",
          "seoTitle": "",
          "seoKeywords": "",
          "seoDescription": "",
          "type": "0",
          "dataConfig": null,
          "level": 1
        },
        {
          "id": 26,
          "pid": 15,
          "name": "港股",
          "pinyin": "hk",
          "path": "/new/hk",
          "orderBy": 0,
          "target": "0",
          "status": "0",
          "listView": "list.html",
          "articleView": "article.html",
          "seoTitle": "",
          "seoKeywords": "",
          "seoDescription": "",
          "type": "0",
          "dataConfig": null,
          "level": 1
        },
        {
          "id": 27,
          "pid": 15,
          "name": "台股",
          "pinyin": "tw",
          "path": "/new/tw",
          "orderBy": 0,
          "target": "0",
          "status": "0",
          "listView": "list.html",
          "articleView": "article.html",
          "seoTitle": "",
          "seoKeywords": "",
          "seoDescription": "",
          "type": "0",
          "dataConfig": null,
          "level": 1
        },
        {
          "id": 28,
          "pid": 15,
          "name": "科技",
          "pinyin": "AI",
          "path": "/new/AI",
          "orderBy": 0,
          "target": "0",
          "status": "0",
          "listView": "list.html",
          "articleView": "article.html",
          "seoTitle": "",
          "seoKeywords": "",
          "seoDescription": "",
          "type": "0",
          "dataConfig": null,
          "level": 1
        }
      ],
      "level": 1
    },
    {
      "id": 17,
      "pid": 0,
      "name": "外汇行情",
      "pinyin": "whhq",
      "path": "/whhq",
      "orderBy": 0,
      "target": "0",
      "status": "0",
      "listView": "list.html",
      "articleView": "article.html",
      "seoTitle": "",
      "seoKeywords": "",
      "seoDescription": "",
      "type": "0",
      "dataConfig": null,
      "level": 1
    },
    {
      "id": 18,
      "pid": 0,
      "name": "外汇平台",
      "pinyin": "whplat",
      "path": "/whplat",
      "orderBy": 0,
      "target": "0",
      "status": "0",
      "listView": "list.html",
      "articleView": "article.html",
      "seoTitle": "",
      "seoKeywords": "",
      "seoDescription": "",
      "type": "0",
      "dataConfig": null,
      "level": 1
    },
    {
      "id": 19,
      "pid": 0,
      "name": "外汇开户",
      "pinyin": "whkh",
      "path": "/whkh",
      "orderBy": 0,
      "target": "0",
      "status": "0",
      "listView": "list.html",
      "articleView": "article.html",
      "seoTitle": "",
      "seoKeywords": "",
      "seoDescription": "",
      "type": "0",
      "dataConfig": null,
      "level": 1
    },
    {
      "id": 20,
      "pid": 0,
      "name": "外汇策略",
      "pinyin": "whcl",
      "path": "/whcl",
      "orderBy": 0,
      "target": "0",
      "status": "0",
      "listView": "list.html",
      "articleView": "article.html",
      "seoTitle": "",
      "seoKeywords": "",
      "seoDescription": "",
      "type": "0",
      "dataConfig": null,
      "level": 1
    },
    {
      "id": 21,
      "pid": 0,
      "name": "外汇入门",
      "pinyin": "whrm",
      "path": "/whrm",
      "orderBy": 0,
      "target": "0",
      "status": "0",
      "listView": "list.html",
      "articleView": "article.html",
      "seoTitle": "",
      "seoKeywords": "",
      "seoDescription": "",
      "type": "0",
      "dataConfig": null,
      "level": 1
    },
    {
      "id": 22,
      "pid": 0,
      "name": "外汇交易",
      "pinyin": "whjy",
      "path": "/whjy",
      "orderBy": 0,
      "target": "0",
      "status": "0",
      "listView": "list.html",
      "articleView": "article.html",
      "seoTitle": "",
      "seoKeywords": "",
      "seoDescription": "",
      "type": "0",
      "dataConfig": null,
      "level": 1
    },
    {
      "id": 23,
      "pid": 0,
      "name": "曝光台",
      "pinyin": "bgt",
      "path": "/bgt",
      "orderBy": 0,
      "target": "0",
      "status": "0",
      "listView": "list-expose.html",
      "articleView": "article.html",
      "seoTitle": "",
      "seoKeywords": "",
      "seoDescription": "",
      "type": "0",
      "dataConfig": null,
      "level": 1
    },
    {
      "id": 24,
      "pid": 0,
      "name": "广告合作",
      "pinyin": "gghz",
      "path": "/gghz",
      "orderBy": 0,
      "target": "0",
      "status": "1",
      "listView": "list.html",
      "articleView": "article.html",
      "seoTitle": "",
      "seoKeywords": "",
      "seoDescription": "",
      "type": "0",
      "dataConfig": null,
      "level": 1
    },
    {
      "id": 25,
      "pid": 15,
      "name": "美股",
      "pinyin": "mg",
      "path": "/new/mg",
      "orderBy": 0,
      "target": "0",
      "status": "0",
      "listView": "list.html",
      "articleView": "article.html",
      "seoTitle": "",
      "seoKeywords": "",
      "seoDescription": "",
      "type": "0",
      "dataConfig": null,
      "level": 1
    },
    {
      "id": 26,
      "pid": 15,
      "name": "港股",
      "pinyin": "hk",
      "path": "/new/hk",
      "orderBy": 0,
      "target": "0",
      "status": "0",
      "listView": "list.html",
      "articleView": "article.html",
      "seoTitle": "",
      "seoKeywords": "",
      "seoDescription": "",
      "type": "0",
      "dataConfig": null,
      "level": 1
    },
    {
      "id": 27,
      "pid": 15,
      "name": "台股",
      "pinyin": "tw",
      "path": "/new/tw",
      "orderBy": 0,
      "target": "0",
      "status": "0",
      "listView": "list.html",
      "articleView": "article.html",
      "seoTitle": "",
      "seoKeywords": "",
      "seoDescription": "",
      "type": "0",
      "dataConfig": null,
      "level": 1
    },
    {
      "id": 28,
      "pid": 15,
      "name": "科技",
      "pinyin": "AI",
      "path": "/new/AI",
      "orderBy": 0,
      "target": "0",
      "status": "0",
      "listView": "list.html",
      "articleView": "article.html",
      "seoTitle": "",
      "seoKeywords": "",
      "seoDescription": "",
      "type": "0",
      "dataConfig": null,
      "level": 1
    },
    {
      "id": 30,
      "pid": 0,
      "name": "实时",
      "pinyin": "hour",
      "path": "/hour",
      "orderBy": 0,
      "target": "0",
      "status": "0",
      "listView": "list.html",
      "articleView": "article.html",
      "seoTitle": "",
      "seoKeywords": "",
      "seoDescription": "",
      "type": "0",
      "dataConfig": null,
      "level": 1
    },
    {
      "id": 32,
      "pid": 10,
      "name": "外汇平台排名",
      "pinyin": "platrange",
      "path": "/home/platrange",
      "orderBy": 0,
      "target": "0",
      "status": "1",
      "listView": "list.html",
      "articleView": "article.html",
      "seoTitle": "",
      "seoKeywords": "",
      "seoDescription": "",
      "type": "0",
      "dataConfig": null,
      "level": 1
    },
    {
      "id": 33,
      "pid": 0,
      "name": "广告招商",
      "pinyin": "ggzs",
      "path": "/ggzs",
      "orderBy": 0,
      "target": "0",
      "status": "1",
      "listView": "list.html",
      "articleView": "article.html",
      "seoTitle": "",
      "seoKeywords": "",
      "seoDescription": "",
      "type": "0",
      "dataConfig": null,
      "level": 1
    },
    {
      "id": 34,
      "pid": 10,
      "name": "保险",
      "pinyin": "baoxian",
      "path": "/home/baoxian",
      "orderBy": 0,
      "target": "0",
      "status": "1",
      "listView": "list.html",
      "articleView": "article.html",
      "seoTitle": "",
      "seoKeywords": "",
      "seoDescription": "",
      "type": "0",
      "dataConfig": null,
      "children": [
        {
          "id": 48,
          "pid": 34,
          "name": "保险入门",
          "pinyin": "bxrm",
          "path": "/home/baoxian/bxrm",
          "orderBy": 0,
          "target": "0",
          "status": "1",
          "listView": "list.html",
          "articleView": "article.html",
          "seoTitle": "",
          "seoKeywords": "",
          "seoDescription": "",
          "type": "0",
          "dataConfig": null,
          "level": 1
        }
      ],
      "level": 1
    },
    {
      "id": 35,
      "pid": 10,
      "name": "贵金属",
      "pinyin": "guijinshu",
      "path": "/home/guijinshu",
      "orderBy": 0,
      "target": "0",
      "status": "1",
      "listView": "list.html",
      "articleView": "article.html",
      "seoTitle": "",
      "seoKeywords": "",
      "seoDescription": "",
      "type": "0",
      "dataConfig": null,
      "children": [
        {
          "id": 49,
          "pid": 35,
          "name": "贵金属入门",
          "pinyin": "fjsrm",
          "path": "/home/guijinshu/fjsrm",
          "orderBy": 0,
          "target": "0",
          "status": "0",
          "listView": "list.html",
          "articleView": "article.html",
          "seoTitle": "",
          "seoKeywords": "",
          "seoDescription": "",
          "type": "0",
          "dataConfig": null,
          "level": 1
        },
        {
          "id": 50,
          "pid": 35,
          "name": "贵金属投资",
          "pinyin": "gjstz",
          "path": "/home/guijinshu/gjstz",
          "orderBy": 0,
          "target": "0",
          "status": "1",
          "listView": "list.html",
          "articleView": "article.html",
          "seoTitle": "",
          "seoKeywords": "",
          "seoDescription": "",
          "type": "0",
          "dataConfig": null,
          "level": 1
        }
      ],
      "level": 1
    },
    {
      "id": 36,
      "pid": 10,
      "name": "期货",
      "pinyin": "qihuo",
      "path": "/home/qihuo",
      "orderBy": 0,
      "target": "0",
      "status": "1",
      "listView": "list.html",
      "articleView": "article.html",
      "seoTitle": "",
      "seoKeywords": "",
      "seoDescription": "",
      "type": "0",
      "dataConfig": null,
      "children": [
        {
          "id": 41,
          "pid": 36,
          "name": "期货入门",
          "pinyin": "qhrm",
          "path": "/home/qihuo/qhrm",
          "orderBy": 0,
          "target": "0",
          "status": "1",
          "listView": "list.html",
          "articleView": "article.html",
          "seoTitle": "",
          "seoKeywords": "",
          "seoDescription": "",
          "type": "0",
          "dataConfig": null,
          "level": 1
        },
        {
          "id": 42,
          "pid": 36,
          "name": "期货交易",
          "pinyin": "qhjy",
          "path": "/home/qihuo/qhjy",
          "orderBy": 0,
          "target": "0",
          "status": "1",
          "listView": "list.html",
          "articleView": "article.html",
          "seoTitle": "",
          "seoKeywords": "",
          "seoDescription": "",
          "type": "0",
          "dataConfig": null,
          "level": 1
        },
        {
          "id": 43,
          "pid": 36,
          "name": "股指期货",
          "pinyin": "fzqh",
          "path": "/home/qihuo/fzqh",
          "orderBy": 0,
          "target": "0",
          "status": "1",
          "listView": "list.html",
          "articleView": "article.html",
          "seoTitle": "",
          "seoKeywords": "",
          "seoDescription": "",
          "type": "0",
          "dataConfig": null,
          "level": 1
        },
        {
          "id": 44,
          "pid": 36,
          "name": "原油期货",
          "pinyin": "yyqh",
          "path": "/home/qihuo/yyqh",
          "orderBy": 0,
          "target": "0",
          "status": "0",
          "listView": "list.html",
          "articleView": "article.html",
          "seoTitle": "",
          "seoKeywords": "",
          "seoDescription": "",
          "type": "0",
          "dataConfig": null,
          "level": 1
        },
        {
          "id": 45,
          "pid": 36,
          "name": "期货公司",
          "pinyin": "qhgs",
          "path": "/home/qihuo/qhgs",
          "orderBy": 0,
          "target": "0",
          "status": "1",
          "listView": "list.html",
          "articleView": "article.html",
          "seoTitle": "",
          "seoKeywords": "",
          "seoDescription": "",
          "type": "0",
          "dataConfig": null,
          "level": 1
        },
        {
          "id": 46,
          "pid": 36,
          "name": "期货开户",
          "pinyin": "qhkh",
          "path": "/home/qihuo/qhkh",
          "orderBy": 0,
          "target": "0",
          "status": "1",
          "listView": "list.html",
          "articleView": "article.html",
          "seoTitle": "",
          "seoKeywords": "",
          "seoDescription": "",
          "type": "0",
          "dataConfig": null,
          "level": 1
        },
        {
          "id": 47,
          "pid": 36,
          "name": "期货交易所",
          "pinyin": "qhjys",
          "path": "/home/qihuo/qhjys",
          "orderBy": 0,
          "target": "0",
          "status": "0",
          "listView": "list.html",
          "articleView": "article.html",
          "seoTitle": "",
          "seoKeywords": "",
          "seoDescription": "",
          "type": "0",
          "dataConfig": null,
          "level": 1
        }
      ],
      "level": 1
    },
    {
      "id": 37,
      "pid": 10,
      "name": "股票",
      "pinyin": "gupiao",
      "path": "/home/gupiao",
      "orderBy": 0,
      "target": "0",
      "status": "1",
      "listView": "list.html",
      "articleView": "article.html",
      "seoTitle": "",
      "seoKeywords": "",
      "seoDescription": "",
      "type": "0",
      "dataConfig": null,
      "children": [
        {
          "id": 51,
          "pid": 37,
          "name": "股票入门",
          "pinyin": "gprm",
          "path": "/home/gupiao/gprm",
          "orderBy": 0,
          "target": "0",
          "status": "1",
          "listView": "list.html",
          "articleView": "article.html",
          "seoTitle": "",
          "seoKeywords": "",
          "seoDescription": "",
          "type": "0",
          "dataConfig": null,
          "level": 1
        },
        {
          "id": 52,
          "pid": 37,
          "name": "股票投资",
          "pinyin": "gptz",
          "path": "/home/gupiao/gptz",
          "orderBy": 0,
          "target": "0",
          "status": "1",
          "listView": "list.html",
          "articleView": "article.html",
          "seoTitle": "",
          "seoKeywords": "",
          "seoDescription": "",
          "type": "0",
          "dataConfig": null,
          "level": 1
        },
        {
          "id": 53,
          "pid": 37,
          "name": "股票交易",
          "pinyin": "gpjy",
          "path": "/home/gupiao/gpjy",
          "orderBy": 0,
          "target": "0",
          "status": "1",
          "listView": "list.html",
          "articleView": "article.html",
          "seoTitle": "",
          "seoKeywords": "",
          "seoDescription": "",
          "type": "0",
          "dataConfig": null,
          "level": 1
        }
      ],
      "level": 1
    },
    {
      "id": 38,
      "pid": 10,
      "name": "证券",
      "pinyin": "zhengquan",
      "path": "/home/zhengquan",
      "orderBy": 0,
      "target": "0",
      "status": "1",
      "listView": "list.html",
      "articleView": "article.html",
      "seoTitle": "",
      "seoKeywords": "",
      "seoDescription": "",
      "type": "0",
      "dataConfig": null,
      "children": [
        {
          "id": 54,
          "pid": 38,
          "name": "证券入门",
          "pinyin": "zqrm",
          "path": "/home/zhengquan/zqrm",
          "orderBy": 0,
          "target": "0",
          "status": "1",
          "listView": "list.html",
          "articleView": "article.html",
          "seoTitle": "",
          "seoKeywords": "",
          "seoDescription": "",
          "type": "0",
          "dataConfig": null,
          "level": 1
        }
      ],
      "level": 1
    },
    {
      "id": 39,
      "pid": 10,
      "name": "区块链",
      "pinyin": "qukuailian",
      "path": "/home/qukuailian",
      "orderBy": 0,
      "target": "0",
      "status": "1",
      "listView": "list.html",
      "articleView": "article.html",
      "seoTitle": "",
      "seoKeywords": "",
      "seoDescription": "",
      "type": "0",
      "dataConfig": null,
      "children": [
        {
          "id": 55,
          "pid": 39,
          "name": "区块链入门",
          "pinyin": "qklrm",
          "path": "/home/qukuailian/qklrm",
          "orderBy": 0,
          "target": "0",
          "status": "1",
          "listView": "list.html",
          "articleView": "article.html",
          "seoTitle": "",
          "seoKeywords": "",
          "seoDescription": "",
          "type": "0",
          "dataConfig": null,
          "level": 1
        }
      ],
      "level": 1
    },
    {
      "id": 40,
      "pid": 10,
      "name": "黄金",
      "pinyin": "huangjin",
      "path": "/home/huangjin",
      "orderBy": 0,
      "target": "0",
      "status": "1",
      "listView": "list.html",
      "articleView": "article.html",
      "seoTitle": "",
      "seoKeywords": "",
      "seoDescription": "",
      "type": "0",
      "dataConfig": null,
      "children": [
        {
          "id": 56,
          "pid": 40,
          "name": "黄金入门",
          "pinyin": "hjrm",
          "path": "/home/huangjin/hjrm",
          "orderBy": 0,
          "target": "0",
          "status": "1",
          "listView": "list.html",
          "articleView": "article.html",
          "seoTitle": "",
          "seoKeywords": "",
          "seoDescription": "",
          "type": "0",
          "dataConfig": null,
          "level": 1
        },
        {
          "id": 57,
          "pid": 40,
          "name": "黄金投资",
          "pinyin": "hjtz",
          "path": "/home/huangjin/hjtz",
          "orderBy": 0,
          "target": "0",
          "status": "1",
          "listView": "list.html",
          "articleView": "article.html",
          "seoTitle": "",
          "seoKeywords": "",
          "seoDescription": "",
          "type": "0",
          "dataConfig": null,
          "level": 1
        },
        {
          "id": 58,
          "pid": 40,
          "name": "黄金期货",
          "pinyin": "hjqh",
          "path": "/home/huangjin/hjqh",
          "orderBy": 0,
          "target": "0",
          "status": "1",
          "listView": "list.html",
          "articleView": "article.html",
          "seoTitle": "",
          "seoKeywords": "",
          "seoDescription": "",
          "type": "0",
          "dataConfig": null,
          "level": 1
        },
        {
          "id": 59,
          "pid": 40,
          "name": "黄金现货",
          "pinyin": "hjxh",
          "path": "/home/huangjin/hjxh",
          "orderBy": 0,
          "target": "0",
          "status": "1",
          "listView": "list.html",
          "articleView": "article.html",
          "seoTitle": "",
          "seoKeywords": "",
          "seoDescription": "",
          "type": "0",
          "dataConfig": null,
          "level": 1
        },
        {
          "id": 60,
          "pid": 40,
          "name": "黄金交易",
          "pinyin": "hjjy",
          "path": "/home/huangjin/hjjy",
          "orderBy": 0,
          "target": "0",
          "status": "1",
          "listView": "list.html",
          "articleView": "article.html",
          "seoTitle": "",
          "seoKeywords": "",
          "seoDescription": "",
          "type": "0",
          "dataConfig": null,
          "level": 1
        }
      ],
      "level": 1
    },
    {
      "id": 41,
      "pid": 36,
      "name": "期货入门",
      "pinyin": "qhrm",
      "path": "/home/qihuo/qhrm",
      "orderBy": 0,
      "target": "0",
      "status": "1",
      "listView": "list.html",
      "articleView": "article.html",
      "seoTitle": "",
      "seoKeywords": "",
      "seoDescription": "",
      "type": "0",
      "dataConfig": null,
      "level": 1
    },
    {
      "id": 42,
      "pid": 36,
      "name": "期货交易",
      "pinyin": "qhjy",
      "path": "/home/qihuo/qhjy",
      "orderBy": 0,
      "target": "0",
      "status": "1",
      "listView": "list.html",
      "articleView": "article.html",
      "seoTitle": "",
      "seoKeywords": "",
      "seoDescription": "",
      "type": "0",
      "dataConfig": null,
      "level": 1
    },
    {
      "id": 43,
      "pid": 36,
      "name": "股指期货",
      "pinyin": "fzqh",
      "path": "/home/qihuo/fzqh",
      "orderBy": 0,
      "target": "0",
      "status": "1",
      "listView": "list.html",
      "articleView": "article.html",
      "seoTitle": "",
      "seoKeywords": "",
      "seoDescription": "",
      "type": "0",
      "dataConfig": null,
      "level": 1
    },
    {
      "id": 44,
      "pid": 36,
      "name": "原油期货",
      "pinyin": "yyqh",
      "path": "/home/qihuo/yyqh",
      "orderBy": 0,
      "target": "0",
      "status": "0",
      "listView": "list.html",
      "articleView": "article.html",
      "seoTitle": "",
      "seoKeywords": "",
      "seoDescription": "",
      "type": "0",
      "dataConfig": null,
      "level": 1
    },
    {
      "id": 45,
      "pid": 36,
      "name": "期货公司",
      "pinyin": "qhgs",
      "path": "/home/qihuo/qhgs",
      "orderBy": 0,
      "target": "0",
      "status": "1",
      "listView": "list.html",
      "articleView": "article.html",
      "seoTitle": "",
      "seoKeywords": "",
      "seoDescription": "",
      "type": "0",
      "dataConfig": null,
      "level": 1
    },
    {
      "id": 46,
      "pid": 36,
      "name": "期货开户",
      "pinyin": "qhkh",
      "path": "/home/qihuo/qhkh",
      "orderBy": 0,
      "target": "0",
      "status": "1",
      "listView": "list.html",
      "articleView": "article.html",
      "seoTitle": "",
      "seoKeywords": "",
      "seoDescription": "",
      "type": "0",
      "dataConfig": null,
      "level": 1
    },
    {
      "id": 47,
      "pid": 36,
      "name": "期货交易所",
      "pinyin": "qhjys",
      "path": "/home/qihuo/qhjys",
      "orderBy": 0,
      "target": "0",
      "status": "0",
      "listView": "list.html",
      "articleView": "article.html",
      "seoTitle": "",
      "seoKeywords": "",
      "seoDescription": "",
      "type": "0",
      "dataConfig": null,
      "level": 1
    },
    {
      "id": 48,
      "pid": 34,
      "name": "保险入门",
      "pinyin": "bxrm",
      "path": "/home/baoxian/bxrm",
      "orderBy": 0,
      "target": "0",
      "status": "1",
      "listView": "list.html",
      "articleView": "article.html",
      "seoTitle": "",
      "seoKeywords": "",
      "seoDescription": "",
      "type": "0",
      "dataConfig": null,
      "level": 1
    },
    {
      "id": 49,
      "pid": 35,
      "name": "贵金属入门",
      "pinyin": "fjsrm",
      "path": "/home/guijinshu/fjsrm",
      "orderBy": 0,
      "target": "0",
      "status": "0",
      "listView": "list.html",
      "articleView": "article.html",
      "seoTitle": "",
      "seoKeywords": "",
      "seoDescription": "",
      "type": "0",
      "dataConfig": null,
      "level": 1
    },
    {
      "id": 50,
      "pid": 35,
      "name": "贵金属投资",
      "pinyin": "gjstz",
      "path": "/home/guijinshu/gjstz",
      "orderBy": 0,
      "target": "0",
      "status": "1",
      "listView": "list.html",
      "articleView": "article.html",
      "seoTitle": "",
      "seoKeywords": "",
      "seoDescription": "",
      "type": "0",
      "dataConfig": null,
      "level": 1
    },
    {
      "id": 51,
      "pid": 37,
      "name": "股票入门",
      "pinyin": "gprm",
      "path": "/home/gupiao/gprm",
      "orderBy": 0,
      "target": "0",
      "status": "1",
      "listView": "list.html",
      "articleView": "article.html",
      "seoTitle": "",
      "seoKeywords": "",
      "seoDescription": "",
      "type": "0",
      "dataConfig": null,
      "level": 1
    },
    {
      "id": 52,
      "pid": 37,
      "name": "股票投资",
      "pinyin": "gptz",
      "path": "/home/gupiao/gptz",
      "orderBy": 0,
      "target": "0",
      "status": "1",
      "listView": "list.html",
      "articleView": "article.html",
      "seoTitle": "",
      "seoKeywords": "",
      "seoDescription": "",
      "type": "0",
      "dataConfig": null,
      "level": 1
    },
    {
      "id": 53,
      "pid": 37,
      "name": "股票交易",
      "pinyin": "gpjy",
      "path": "/home/gupiao/gpjy",
      "orderBy": 0,
      "target": "0",
      "status": "1",
      "listView": "list.html",
      "articleView": "article.html",
      "seoTitle": "",
      "seoKeywords": "",
      "seoDescription": "",
      "type": "0",
      "dataConfig": null,
      "level": 1
    },
    {
      "id": 54,
      "pid": 38,
      "name": "证券入门",
      "pinyin": "zqrm",
      "path": "/home/zhengquan/zqrm",
      "orderBy": 0,
      "target": "0",
      "status": "1",
      "listView": "list.html",
      "articleView": "article.html",
      "seoTitle": "",
      "seoKeywords": "",
      "seoDescription": "",
      "type": "0",
      "dataConfig": null,
      "level": 1
    },
    {
      "id": 55,
      "pid": 39,
      "name": "区块链入门",
      "pinyin": "qklrm",
      "path": "/home/qukuailian/qklrm",
      "orderBy": 0,
      "target": "0",
      "status": "1",
      "listView": "list.html",
      "articleView": "article.html",
      "seoTitle": "",
      "seoKeywords": "",
      "seoDescription": "",
      "type": "0",
      "dataConfig": null,
      "level": 1
    },
    {
      "id": 56,
      "pid": 40,
      "name": "黄金入门",
      "pinyin": "hjrm",
      "path": "/home/huangjin/hjrm",
      "orderBy": 0,
      "target": "0",
      "status": "1",
      "listView": "list.html",
      "articleView": "article.html",
      "seoTitle": "",
      "seoKeywords": "",
      "seoDescription": "",
      "type": "0",
      "dataConfig": null,
      "level": 1
    },
    {
      "id": 57,
      "pid": 40,
      "name": "黄金投资",
      "pinyin": "hjtz",
      "path": "/home/huangjin/hjtz",
      "orderBy": 0,
      "target": "0",
      "status": "1",
      "listView": "list.html",
      "articleView": "article.html",
      "seoTitle": "",
      "seoKeywords": "",
      "seoDescription": "",
      "type": "0",
      "dataConfig": null,
      "level": 1
    },
    {
      "id": 58,
      "pid": 40,
      "name": "黄金期货",
      "pinyin": "hjqh",
      "path": "/home/huangjin/hjqh",
      "orderBy": 0,
      "target": "0",
      "status": "1",
      "listView": "list.html",
      "articleView": "article.html",
      "seoTitle": "",
      "seoKeywords": "",
      "seoDescription": "",
      "type": "0",
      "dataConfig": null,
      "level": 1
    },
    {
      "id": 59,
      "pid": 40,
      "name": "黄金现货",
      "pinyin": "hjxh",
      "path": "/home/huangjin/hjxh",
      "orderBy": 0,
      "target": "0",
      "status": "1",
      "listView": "list.html",
      "articleView": "article.html",
      "seoTitle": "",
      "seoKeywords": "",
      "seoDescription": "",
      "type": "0",
      "dataConfig": null,
      "level": 1
    },
    {
      "id": 60,
      "pid": 40,
      "name": "黄金交易",
      "pinyin": "hjjy",
      "path": "/home/huangjin/hjjy",
      "orderBy": 0,
      "target": "0",
      "status": "1",
      "listView": "list.html",
      "articleView": "article.html",
      "seoTitle": "",
      "seoKeywords": "",
      "seoDescription": "",
      "type": "0",
      "dataConfig": null,
      "level": 1
    },
    {
      "id": 61,
      "pid": 10,
      "name": "基金",
      "pinyin": "jijin",
      "path": "/home/jijin",
      "orderBy": 0,
      "target": "0",
      "status": "0",
      "listView": "list.html",
      "articleView": "article.html",
      "seoTitle": "",
      "seoKeywords": "",
      "seoDescription": "",
      "type": "0",
      "dataConfig": null,
      "children": [
        {
          "id": 62,
          "pid": 61,
          "name": "基金入门",
          "pinyin": "jjrm",
          "path": "/home/jijin/jjrm",
          "orderBy": 0,
          "target": "0",
          "status": "1",
          "listView": "list.html",
          "articleView": "article.html",
          "seoTitle": "",
          "seoKeywords": "",
          "seoDescription": "",
          "type": "0",
          "dataConfig": null,
          "level": 1
        }
      ],
      "level": 1
    },
    {
      "id": 62,
      "pid": 61,
      "name": "基金入门",
      "pinyin": "jjrm",
      "path": "/home/jijin/jjrm",
      "orderBy": 0,
      "target": "0",
      "status": "1",
      "listView": "list.html",
      "articleView": "article.html",
      "seoTitle": "",
      "seoKeywords": "",
      "seoDescription": "",
      "type": "0",
      "dataConfig": null,
      "level": 1
    },
    {
      "id": 65,
      "pid": 0,
      "name": "外汇经纪商",
      "pinyin": "whjjs",
      "path": "/whjjs",
      "orderBy": 0,
      "target": "0",
      "status": "0",
      "listView": "list.html",
      "articleView": "article.html",
      "seoTitle": "",
      "seoKeywords": "",
      "seoDescription": "",
      "type": "0",
      "dataConfig": null,
      "children": [
        {
          "id": 66,
          "pid": 65,
          "name": "XM外汇",
          "pinyin": "smfx",
          "path": "/whjjs/smfx",
          "orderBy": 0,
          "target": "0",
          "status": "0",
          "listView": "list.html",
          "articleView": "article.html",
          "seoTitle": "",
          "seoKeywords": "",
          "seoDescription": "",
          "type": "0",
          "dataConfig": null,
          "level": 1
        },
        {
          "id": 67,
          "pid": 65,
          "name": "Exness外汇",
          "pinyin": "exfx",
          "path": "/whjjs/exfx",
          "orderBy": 0,
          "target": "0",
          "status": "0",
          "listView": "list.html",
          "articleView": "article.html",
          "seoTitle": "",
          "seoKeywords": "",
          "seoDescription": "",
          "type": "0",
          "dataConfig": null,
          "level": 1
        },
        {
          "id": 68,
          "pid": 65,
          "name": "TMGM外汇",
          "pinyin": "tmgmfx",
          "path": "/whjjs/tmgmfx",
          "orderBy": 0,
          "target": "0",
          "status": "0",
          "listView": "list.html",
          "articleView": "article.html",
          "seoTitle": "",
          "seoKeywords": "",
          "seoDescription": "",
          "type": "0",
          "dataConfig": null,
          "level": 1
        },
        {
          "id": 69,
          "pid": 65,
          "name": "Doo Prime德璞资本",
          "pinyin": "doo",
          "path": "/whjjs/doo",
          "orderBy": 0,
          "target": "0",
          "status": "0",
          "listView": "list.html",
          "articleView": "article.html",
          "seoTitle": "",
          "seoKeywords": "",
          "seoDescription": "",
          "type": "0",
          "dataConfig": null,
          "level": 1
        },
        {
          "id": 70,
          "pid": 65,
          "name": "FXTM富拓",
          "pinyin": "fxtm",
          "path": "/whjjs/fxtm",
          "orderBy": 0,
          "target": "0",
          "status": "0",
          "listView": "list.html",
          "articleView": "article.html",
          "seoTitle": "",
          "seoKeywords": "",
          "seoDescription": "",
          "type": "0",
          "dataConfig": null,
          "level": 1
        },
        {
          "id": 72,
          "pid": 65,
          "name": "EC外汇",
          "pinyin": "ecfx",
          "path": "/whjjs/ecfx",
          "orderBy": 0,
          "target": "0",
          "status": "0",
          "listView": "list.html",
          "articleView": "article.html",
          "seoTitle": "",
          "seoKeywords": "",
          "seoDescription": "",
          "type": "0",
          "dataConfig": null,
          "level": 1
        }
      ],
      "level": 1
    },
    {
      "id": 66,
      "pid": 65,
      "name": "XM外汇",
      "pinyin": "smfx",
      "path": "/whjjs/smfx",
      "orderBy": 0,
      "target": "0",
      "status": "0",
      "listView": "list.html",
      "articleView": "article.html",
      "seoTitle": "",
      "seoKeywords": "",
      "seoDescription": "",
      "type": "0",
      "dataConfig": null,
      "level": 1
    },
    {
      "id": 67,
      "pid": 65,
      "name": "Exness外汇",
      "pinyin": "exfx",
      "path": "/whjjs/exfx",
      "orderBy": 0,
      "target": "0",
      "status": "0",
      "listView": "list.html",
      "articleView": "article.html",
      "seoTitle": "",
      "seoKeywords": "",
      "seoDescription": "",
      "type": "0",
      "dataConfig": null,
      "level": 1
    },
    {
      "id": 68,
      "pid": 65,
      "name": "TMGM外汇",
      "pinyin": "tmgmfx",
      "path": "/whjjs/tmgmfx",
      "orderBy": 0,
      "target": "0",
      "status": "0",
      "listView": "list.html",
      "articleView": "article.html",
      "seoTitle": "",
      "seoKeywords": "",
      "seoDescription": "",
      "type": "0",
      "dataConfig": null,
      "level": 1
    },
    {
      "id": 69,
      "pid": 65,
      "name": "Doo Prime德璞资本",
      "pinyin": "doo",
      "path": "/whjjs/doo",
      "orderBy": 0,
      "target": "0",
      "status": "0",
      "listView": "list.html",
      "articleView": "article.html",
      "seoTitle": "",
      "seoKeywords": "",
      "seoDescription": "",
      "type": "0",
      "dataConfig": null,
      "level": 1
    },
    {
      "id": 70,
      "pid": 65,
      "name": "FXTM富拓",
      "pinyin": "fxtm",
      "path": "/whjjs/fxtm",
      "orderBy": 0,
      "target": "0",
      "status": "0",
      "listView": "list.html",
      "articleView": "article.html",
      "seoTitle": "",
      "seoKeywords": "",
      "seoDescription": "",
      "type": "0",
      "dataConfig": null,
      "level": 1
    },
    {
      "id": 71,
      "pid": 10,
      "name": "经纪商 ",
      "pinyin": "jjs",
      "path": "/home/jjs",
      "orderBy": 0,
      "target": "0",
      "status": "1",
      "listView": "list.html",
      "articleView": "article.html",
      "seoTitle": "",
      "seoKeywords": "",
      "seoDescription": "",
      "type": "0",
      "dataConfig": null,
      "level": 1
    },
    {
      "id": 72,
      "pid": 65,
      "name": "EC外汇",
      "pinyin": "ecfx",
      "path": "/whjjs/ecfx",
      "orderBy": 0,
      "target": "0",
      "status": "0",
      "listView": "list.html",
      "articleView": "article.html",
      "seoTitle": "",
      "seoKeywords": "",
      "seoDescription": "",
      "type": "0",
      "dataConfig": null,
      "level": 1
    }
  ],
  "friendlink": [],
  "frag": {},
  "tag": [
    {
      "id": 1,
      "name": "EC外汇",
      "path": "pic",
      "count": 4
    },
    {
      "id": 16,
      "name": "XM官网",
      "path": "",
      "count": 1
    },
    {
      "id": 23,
      "name": "XM集团",
      "path": "",
      "count": 1
    },
    {
      "id": 2,
      "name": "XM外汇",
      "path": "chancms",
      "count": 0
    },
    {
      "id": 4,
      "name": "TMGM外汇平台",
      "path": "",
      "count": 0
    },
    {
      "id": 5,
      "name": "FXTM富拓",
      "path": "",
      "count": 0
    },
    {
      "id": 6,
      "name": "DLSM外汇官网",
      "path": "",
      "count": 0
    },
    {
      "id": 7,
      "name": "EX官网",
      "path": "",
      "count": 0
    },
    {
      "id": 8,
      "name": "德璞资本",
      "path": "",
      "count": 0
    },
    {
      "id": 9,
      "name": "比特币",
      "path": "",
      "count": 0
    },
    {
      "id": 10,
      "name": "致富财经",
      "path": "",
      "count": 0
    },
    {
      "id": 11,
      "name": "Xm外汇官网",
      "path": "",
      "count": 0
    },
    {
      "id": 12,
      "name": "TMGM官网",
      "path": "",
      "count": 0
    },
    {
      "id": 13,
      "name": "外汇交易",
      "path": "",
      "count": 0
    },
    {
      "id": 14,
      "name": "炒外汇",
      "path": "",
      "count": 0
    },
    {
      "id": 15,
      "name": "美股",
      "path": "",
      "count": 0
    },
    {
      "id": 17,
      "name": "陆港股",
      "path": "",
      "count": 0
    },
    {
      "id": 18,
      "name": "黄金",
      "path": "",
      "count": 0
    },
    {
      "id": 19,
      "name": "石油",
      "path": "",
      "count": 0
    },
    {
      "id": 20,
      "name": "贵金属",
      "path": "",
      "count": 0
    },
    {
      "id": 21,
      "name": "致富证券",
      "path": "",
      "count": 0
    },
    {
      "id": 22,
      "name": "金融诈骗",
      "path": "",
      "count": 0
    },
    {
      "id": 24,
      "name": "富拓外汇",
      "path": "",
      "count": 0
    }
  ],
  "ads": [
    {
      "id": 1913,
      "title": "HeroSMS",
      "img": "/public/uploads/default/image/2026/06/08/1780906856004.png",
      "link": "http://www.xiaolizi.work"
    },
    {
      "id": 1914,
      "title": "致富财经",
      "img": "/public/uploads/default/image/2026/06/08/1780906939770.png",
      "link": "https://www.chiefrich.com"
    },
    {
      "id": 1915,
      "title": "致富财经",
      "img": "/public/uploads/default/image/2026/06/08/1780906983444.png",
      "link": "https://www.chiefrich.com"
    },
    {
      "id": 3389,
      "title": "科技改变生活",
      "img": "/public/uploads/default/image/2026/06/23/1782210403190.png",
      "link": "https://www.chiefrich.com"
    },
    {
      "id": 4444,
      "title": "XM官网",
      "img": "/public/uploads/default/image/2026/07/01/1782876542326.png",
      "link": "https://affs.click/4nWcr"
    },
    {
      "id": 5965,
      "title": "昂首外汇",
      "img": "/public/uploads/default/image/2026/07/09/1783592741949.png",
      "link": "https://my.anzocapital.com/register?node=MjM2MTA=&language=zh-Hans"
    }
  ],
  "recommend": [
    {
      "id": 158,
      "title": "苹果、华为、小米促销 在中国市场降价千元",
      "shortTitle": "苹果、华为、小米促销 在中国市场降价千元",
      "img": "https://cimg.cnyes.cool/prod/news/6461502/l/1ee6215af9fda04c4ba6ba5cd0bc35e0.jpg",
      "createdAt": "2026-05-18T02:18:39.000Z",
      "description": "近日苹果、华为、小米三大手机厂商在中国市场展开降价促销。",
      "pv": 111,
      "pinyin": "mg",
      "name": "美股",
      "path": "/new/mg"
    },
    {
      "id": 2771,
      "title": "美股重点新闻摘要2026年6月23日",
      "shortTitle": "美股重点新闻摘要2026年6月23日",
      "img": "https://cimg.cnyes.cool/prod/news/6507760/l/568096987fe332d5df3df2a225455259.jpg",
      "createdAt": "2026-06-23T00:00:04.000Z",
      "description": "美股重点新闻摘要 2026 年 6 月 23 日",
      "pv": 100,
      "pinyin": "mg",
      "name": "美股",
      "path": "/new/mg"
    },
    {
      "id": 2550,
      "title": "Google连失两AI大将!AlphaFold之父奔向Anthropic、Transformer共同作者投靠OpenAI",
      "shortTitle": "Google连失两AI大将!AlphaFold之父奔向Ant",
      "img": "https://cimg.cnyes.cool/prod/news/6506049/l/cf03eacc4225ea8346e338d32c3f1896.jpg",
      "createdAt": "2026-06-20T10:00:05.000Z",
      "description": "Google AI 版图遭遇重大挑战。AlphaFold 之父、诺贝尔化学奖得主 John Jumper 宣布离开 DeepMind 加入 Anthropic;Transformer 共同作者 Noam Shazeer 则转投 OpenAI。",
      "pv": 98,
      "pinyin": "mg",
      "name": "美股",
      "path": "/new/mg"
    },
    {
      "id": 1850,
      "title": "卖飞了!Arm高层集体套现2560万美元 傻眼看股价喷新高",
      "shortTitle": "卖飞了!Arm高层集体套现2560万美元 傻眼看股价喷新高",
      "img": "https://cimg.cnyes.cool/prod/news/6487108/l/0a9e42737fa1a2da22e169702addf603.jpg",
      "createdAt": "2026-06-08T00:00:06.000Z",
      "description": "晶片设计大厂 Arm(ARM-US) 多位高阶主管在 5 月中旬至 6 月初期间,大举抛售价值将近 2,600 万美元的自家股票,硬生生错过了随后将股价推上历史新高的疯狂涨势。 其中,法务长暨公司秘书 Spencer Collins 的套现金额最大,于 5 月 19 日出脱价值 880 万美元的持股。Collins 以每股 215 美元的价格卖出 40,941 股,在此番交易完成后,其名下已无直接持有的安谋股份。 清空直接持股的高层不只一人。人资长 Charlotte Eaton 自 5 月 2",
      "pv": 95,
      "pinyin": "mg",
      "name": "美股",
      "path": "/new/mg"
    },
    {
      "id": 2669,
      "title": "联发科独家接单!郭明?:谷歌开发TPU v9晶片加强版「Triggerfish」 主打AI推理能力升级",
      "shortTitle": "联发科独家接单!郭明?:谷歌开发TPU v9晶片加强版「Tr",
      "img": "https://cimg.cnyes.cool/prod/news/6507163/l/cae5e1efafe845972f0c8c95ededf10d.jpg",
      "createdAt": "2026-06-22T07:30:03.000Z",
      "description": "天风国际证券分析师郭明?今 (22) 日表示,谷歌将在代号「Humufish」的 TPU v9 自研 AI 晶片基础上,推出一款主打 AI 推理能力升级的改版晶片,代号疑似为「Triggerfish」,并由联发科独家取得新增订单。 郭明?指出,Triggerfish 旨在缓解 AI ASIC 常见的「CPU 墙」与「记忆体墙 (Memory Wall)」瓶颈。 相较于 Humufish,Triggerfish 片内 SRAM 快取容量提升至 2-3 倍,可将更大规模活跃工作集保留于 TPU,",
      "pv": 95,
      "pinyin": "mg",
      "name": "美股",
      "path": "/new/mg"
    },
    {
      "id": 1743,
      "title": "台积电成最大赢家!AI封装重构半导体格局、大摩点名CoWoS、CPO、WoW三大技术",
      "shortTitle": "台积电成最大赢家!AI封装重构半导体格局、大摩点名CoWoS",
      "img": "https://cimg.cnyes.cool/prod/news/6480009/l/6f0c04ccc9f901fff0a23e9774727236.jpg",
      "createdAt": "2026-06-02T07:23:36.000Z",
      "description": "摩根士丹利最新报告指出,2030 年全球 AI 半导体市场规模将达 7,530 亿美元,先进封装已成为决定 AI 晶片效能与成本的关键。台积电 CoWoS 产能持续扩张,辉达为最大客户;CPO 共封装光学与 WoW 晶圆堆叠技术也快速崛起,成为",
      "pv": 94,
      "pinyin": "mg",
      "name": "美股",
      "path": "/new/mg"
    },
    {
      "id": 1851,
      "title": "不再只拼层数 记忆体三大巨头打响「HBM散热战」",
      "shortTitle": "不再只拼层数 记忆体三大巨头打响「HBM散热战」",
      "img": "https://cimg.cnyes.cool/prod/news/6487122/l/9168b5c8a0d34125f1b406bf9047c4c1.jpg",
      "createdAt": "2026-06-07T23:20:02.000Z",
      "description": "随着全球人工智慧(AI)算力需求迎来爆发式增长,SK 海力士、三星电子与美光科技 (MU-US) 三大记忆体巨头的技术博弈,已悄然转移至「散热战场」。 随着辉达 (NVDA-US) 证实三家晶片制造商均已通过认证并投产,可为最新 AI 平台「Vera Rubin」供应最先进的高频宽记忆体(HBM),意味着 HBM4 的大规模量产已箭在弦上。 然而,在 HBM4 走上台前的同时,下一代 HBM5 的研发竞速也已拉开序幕,而这一次,决定胜负的关键指标不再仅是堆叠层数与传输速度,而是「晶片内部热管理」",
      "pv": 89,
      "pinyin": "mg",
      "name": "美股",
      "path": "/new/mg"
    },
    {
      "id": 575,
      "title": "华尔街掀AI培训热潮!单日2.5万美元课程爆满",
      "shortTitle": "华尔街掀AI培训热潮!单日2.5万美元课程爆满",
      "img": "https://cimg.cnyes.cool/prod/news/6470700/l/19b346eb56d566bca2d8456f8a48110c.jpg",
      "createdAt": "2026-05-26T05:16:25.000Z",
      "description": "人工智慧(AI)席卷金融业,华尔街兴起 AI 培训热潮。由 Wall Street Prompt 提供的生成式 AI 课程爆红,单日收费高达 2.5 万美元仍供不应求,金融机构加速导入 ChatGPT 等工具以提升投研效率并重塑人才竞争力。",
      "pv": 88,
      "pinyin": "mg",
      "name": "美股",
      "path": "/new/mg"
    },
    {
      "id": 113,
      "title": "辉达中国营收梦碎!川普证实中国拒买H200晶片:他们「想自己开发」",
      "shortTitle": "辉达中国营收梦碎!川普证实中国拒买H200晶片:他们「想自己",
      "img": "https://cimg.cnyes.cool/prod/news/6461131/l/8fe20f86406bff6ece4d3efb47e996ca.jpg",
      "createdAt": "2026-05-17T01:20:04.000Z",
      "description": "美国总统川普表示,中国拒绝批准企业采购辉达(NVIDIA)H200 AI 晶片,原因是北京希望发展自主 AI 技术与本土晶片产业。尽管美国已批准部分中国企业购买 H200,包括阿里巴巴、腾讯与字节跳动,但至今仍未实际出货。白宫同",
      "pv": 87,
      "pinyin": "mg",
      "name": "美股",
      "path": "/new/mg"
    },
    {
      "id": 1742,
      "title": "PIMCO:目前美债殖利率主要反映联准会利率政策 而非AI驱动",
      "shortTitle": "PIMCO:目前美债殖利率主要反映联准会利率政策 而非AI驱",
      "img": "https://cimg.cnyes.cool/prod/news/6480798/l/5cde0cb9910c5f26116762e5240a8f9f.jpg",
      "createdAt": "2026-06-02T07:50:03.000Z",
      "description": "PIMCO 发表报告指出,虽然人工智慧 (AI) 产业的融资需求正在增长,但目前其结构性压力尚不足以取代周期性因素,成为驱动美国公债殖利率波动的主因。",
      "pv": 87,
      "pinyin": "mg",
      "name": "美股",
      "path": "/new/mg"
    }
  ],
  "prev": {
    "id": 11505,
    "title": "美银曝最优「AI泡沫交易」:建议同时做多「傲慢」与「偏见」",
    "name": "美股",
    "path": "/new/mg"
  },
  "next": {
    "id": 11511,
    "title": "距发表还一个月!电商不怕临时改模 抢先开卖折叠iPhone壳  配件商打什么算盘?",
    "name": "美股",
    "path": "/new/mg"
  },
  "randomRecommend": [
    {
      "id": 1309,
      "title": "什么是随机指标KDJ?KDJ随机指标运用技巧和方法",
      "img": "/public/uploads/default/image/2026/05/29/1780041041341_04agvf.jpg",
      "path": "/whcl"
    },
    {
      "id": 1224,
      "title": "【ACY稀万证券】发展历史详解",
      "img": "/public/uploads/default/image/2026/05/29/1780040993321_poiyua.jpg",
      "path": "/whhq"
    },
    {
      "id": 1268,
      "title": "怎样辨别外汇平台?靠谱的外汇平台如何挑选?有哪些优势平台?",
      "img": "/public/uploads/default/image/2026/05/29/1780041011078_9n4y4j.jpg",
      "path": "/whplat"
    },
    {
      "id": 4266,
      "title": "个人如何正确开 XM 账户?——XM外汇官网全流程指南与避坑手册!",
      "img": "/public/uploads/default/image/2026/06/29/1782715943391_y6u859.jpg",
      "path": "/whjy"
    },
    {
      "id": 1374,
      "title": "XM 入金账户涉诈,六年老客户银行卡被冻结,交易爆仓",
      "img": "/public/uploads/default/image/2026/05/29/1780041073046_kltczt.jpg",
      "path": "/whjy"
    },
    {
      "id": 1272,
      "title": "外汇投资者要怎样选择外汇交易平台?",
      "img": "/public/uploads/default/image/2026/05/29/1780041012397_ufmwcz.jpg",
      "path": "/whplat"
    },
    {
      "id": 4233,
      "title": "外汇交易延迟用外汇VPS就能解决吗?",
      "img": "/public/uploads/default/image/2026/06/29/1782715896105_ohrvok.jpg",
      "path": "/whhq"
    },
    {
      "id": 1327,
      "title": "外汇入门新手必须了解的外汇基础术语",
      "img": "/public/uploads/default/image/2026/05/29/1780041048245_ycuum7.jpg",
      "path": "/whrm"
    }
  ],
  "cate": {
    "id": 25,
    "pid": 15,
    "name": "美股",
    "pinyin": "mg",
    "path": "/new/mg",
    "orderBy": 0,
    "target": "0",
    "status": "0",
    "listView": "list.html",
    "articleView": "article.html",
    "seoTitle": "",
    "seoKeywords": "",
    "seoDescription": "",
    "type": "0",
    "dataConfig": null,
    "level": 1
  },
  "article": {
    "id": 11510,
    "cid": 25,
    "subCid": null,
    "title": "Anthropic揭Claude Code「省钱6招」!善用快取、/clear降低Token成本",
    "shortTitle": "Anthropic揭Claude Code「省钱6招」!善用",
    "tagId": "",
    "attr": "",
    "articleView": null,
    "source": null,
    "author": "钜亨网",
    "description": "Anthropic 公布 Claude Code 6 大省钱技巧,从/clear、/compact、模型与推理强度设定,到提示快取与子代理,教开发者降低 Token 消耗与 AI 程式开发成本。",
    "img": "https://cimg.cnyes.cool/prod/news/6578336/l/2275fd004800c2f98cc73a7d644ed2a0.jpg",
    "content": "<p>Anthropic近日发布一篇<a href=\"https://claude.com/blog/maximizing-the-value-of-your-claude-code-sessions\">部落格文章</a>,针对开发者使用Claude Code时容易出现的Token浪费问题,整理出6项降低成本的实用技巧。</p>\n<p style=\"text-align:center;\"><img src=\"https://cimg.cnyes.cool/prod/news/6578336/l/2275fd004800c2f98cc73a7d644ed2a0.jpg\" alt=\"Anthropic揭Claude Code「省钱6招」!善用快取、/clear降低Token成本\" style=\"width:50%;height:auto;border-radius:6px;margin:15px auto;display:block;\"></p>\n\n\n<p>官方指出,Claude Code的使用成本不只取决于选用哪个模型,也与推理强度、上下文长度及提示快取是否命中密切相关;若缺乏上下文管理,同一项程式开发任务的成本可能出现数倍差距。</p>\n\n<p>Anthropic建议,开发者完成一项任务后应立即使用「/clear」清除对话,避免前一项工作的档案内容、指令输出与探索过程持续留在上下文中,并在开始工作时就确定模型与推理强度,减少后续切换造成的快取失效。</p>\n\n<h6>Anthropic列6招降低Claude Code成本</h6>\n\n<ol>\n<li>在不同任务之间执行「/clear」,避免把之前无关的上下文继续送到模型,进而减少Token消耗。</li>\n<li>开始工作前,先确定好模型和推理强度,因为中途更改其中任何一个,都可能导致提示词快取失效,进而增加Token成本。</li>\n<li>不要只写出档名,而是直接用「@」提及文件,使档案会直接附加到讯息中,省去一次Read调用,并避免Claude再去搜寻档案。</li>\n<li>对输出冗长的指令加上静默参数,或把指令交给子代理执行。因为命令输出会像档案一样加入对话,并且在整个会话期间都会保留。</li>\n<li>在新会话开始时执行一次「/context」。它会显示目前载入的内容(例如 CLAUDE.md 和 MCP 工具定义),方便用户删除不必要的内容。</li>\n<li>暂时离开键盘前执行「/compact」。提示词快取通常一小时后就会过期,而在快取仍然有效时进行对话压缩,成本要低得多。</li>\n</ol>\n\n<h6>Claude Code成本关键在Token如何被计算</h6>\n\n<p>Anthropic也进一步说明Claude Code背后的Token消耗机制。每次使用者发出指令时,模型首先需要进行「预填充」,读取系统提示词、CLAUDE.md、使用者讯息及过往对话等输入内容;接着进入「解码」(decode)阶段,产生模型回复、思考内容及工具呼叫等输出。</p>\n\n<p>两者的运算方式并不相同。预填充会一次处理输入内容,而解码则是逐个Token产生输出,因此输出Token的成本高于输入Token。</p>\n\n<p>模型本身则决定每个Token的价格,而推理强度会影响Token使用量。</p>\n\n<p>Anthropic指出,推理强度越高,模型需要产生的思考Token越多,因此开发者不应在所有任务上都使用最高推理强度,而应根据工作的复杂程度选择合适的模型与设定。</p>\n\n<h6>提示快取成为降低成本的重要工具</h6>\n\n<p>在Claude Code的成本结构中,提示快取是另一个关键因素。</p>\n\n<p>Claude Code的请求通常会包含相同的前缀,例如系统提示词、工具定义、CLAUDE.md以及既有对话历史。如果下一次请求的前缀内容与前一次完全一致,系统可以直接使用先前的计算结果,而不必重新处理全部内容。</p>\n\n<p>Anthropic指出,快取读取只要正常输入价的0.1倍,可以直接省掉90%。虽然首次写入快取需要较高成本,但之后的请求可以持续利用既有快取。</p>\n\n<p>不过,快取并非永久有效,而且必须维持连续匹配。Anthropic列出几种可能导致快取失效的情况,包括切换模型、改变推理强度、开启或关闭Fast mode、使用「/compact」重新整理对话、快取逾期,以及长时间后恢复旧会话。</p>\n\n<p>其中,模型与推理强度的切换尤其值得注意。Anthropic指出,不同模型各自拥有独立快取,因此从一个模型切换到另一个模型后,原本的对话历史可能需要重新进行预填充;推理强度同样属于快取条件之一。</p>\n\n<p>此外,Anthropic也提醒使用者注意「opusplan」模式。由于该模式会在不同阶段切换模型,因此进入或离开相关模式都可能造成快取失效,频繁切换可能增加额外成本。</p>\n\n<h6>对话越长,累积成本也越高</h6>\n\n<p>即使成功利用快取降低重复处理成本,Anthropic仍提醒,对话本身持续膨胀仍会增加Token使用量。</p>\n\n<p>Claude每读取一个档案、执行一次指令,都可能将相关内容加入对话历史。随着工作轮数增加,后续请求需要携带的上下文也会越来越长。</p>\n\n<p>Claude Code设有机制处理过大的命令输出:当输出超过一定长度时,内容会被写入暂存档案,而对话中只保留摘要。不过,较短但仍然庞大的输出仍可能直接留在上下文中。</p>\n\n<p>例如测试工具产生大量测试结果,即使没有超过系统设定的门槛,这些内容仍可能持续占据后续对话空间。</p>\n\n<p>因此,Anthropic再次强调,让命令保持精简、将大型工作交给子代理,以及适时清除或压缩对话,都是降低上下文膨胀的重要方式。</p>\n\n<p>除了「/clear」与「/compact」之外,Anthropic也提到「/rewind」。如果最近几轮对话出现偏离,可以利用「/rewind」移除后续内容,同时保留较早的对话与快取状态。</p>\n\n<h6>AI程式开发开始出现「Token管理」能力</h6>\n\n<p>从Anthropic整理的这些技巧可以看出,Claude Code的使用效率已不只是模型能力或程式设计技巧的问题,如何管理上下文、控制输出、维持快取及选择适当推理强度,也逐渐成为影响开发成本的重要因素。</p>\n\n<p>对开发者而言,真正需要避免的并非单次使用大量Token,而是在长时间、多轮次的工作流程中,让无关的上下文不断累积,并因模型或设定切换导致原本可以重复利用的快取失效。</p>\n\n<p>Anthropic此次公布的6项建议,核心逻辑也相当明确:让每一次请求只携带真正需要的内容、让能够快取的内容持续命中,并将不必要的大量输出隔离在主对话之外。对于高频率使用Claude Code的开发者而言,这些操作将直接影响相同工作量下的Token消耗。</p>\n<div class=\"related-articles seo-links\">\n  <h4>相关阅读</h4>\n  <ul>\n    <li><a href=\"/new/mg/article-3369.html\" title=\"SpaceX连跌3天 「木头姐」利用大跌日狂买逾3200万美元\">SpaceX连跌3天 「木头姐」利用大跌日狂买逾3200万美元</a></li>\n    <li><a href=\"/new/mg/article-346.html\" title=\"SpaceX史诗级IPO来了 散户首日如何上车?\">SpaceX史诗级IPO来了 散户首日如何上车?</a></li>\n    <li><a href=\"/new/mg/article-7044.html\" title=\"伊朗警告川普荷姆兹是「红线」 若攻击基础设施将全面报复\">伊朗警告川普荷姆兹是「红线」 若攻击基础设施将全面报复</a></li>\n    <li><a href=\"/new/mg/article-2446.html\" title=\"买了又得卖?Manus传斥资20亿美元从Meta手中买回自己\">买了又得卖?Manus传斥资20亿美元从Meta手中买回自己</a></li>\n    <li><a href=\"/new/mg/article-8639.html\" title=\"AI循环融资疑虑升温 辉达CDS创新高引发华尔街警戒\">AI循环融资疑虑升温 辉达CDS创新高引发华尔街警戒</a></li>\n    <li><a href=\"/new/mg/article-4013.html\" title=\"AI热潮开始降温?科技基金一周流出近200亿美元\">AI热潮开始降温?科技基金一周流出近200亿美元</a></li>\n  </ul>\n</div>",
    "status": 0,
    "pv": 8,
    "link": "https://news.cnyes.com/news/id/6578336",
    "createdAt": "2026-08-16T23:10:03.000Z",
    "updatedAt": "2026-08-21T16:23:37.000Z"
  },
  "position": [
    {
      "id": 15,
      "pid": 0,
      "name": "热点新闻",
      "pinyin": "new",
      "path": "/new",
      "orderBy": 0,
      "target": "0",
      "status": "0",
      "listView": "list.html",
      "articleView": "article.html",
      "seoTitle": "",
      "seoKeywords": "",
      "seoDescription": "",
      "type": "0",
      "dataConfig": null,
      "children": [
        {
          "id": 25,
          "pid": 15,
          "name": "美股",
          "pinyin": "mg",
          "path": "/new/mg",
          "orderBy": 0,
          "target": "0",
          "status": "0",
          "listView": "list.html",
          "articleView": "article.html",
          "seoTitle": "",
          "seoKeywords": "",
          "seoDescription": "",
          "type": "0",
          "dataConfig": null,
          "level": 1
        },
        {
          "id": 26,
          "pid": 15,
          "name": "港股",
          "pinyin": "hk",
          "path": "/new/hk",
          "orderBy": 0,
          "target": "0",
          "status": "0",
          "listView": "list.html",
          "articleView": "article.html",
          "seoTitle": "",
          "seoKeywords": "",
          "seoDescription": "",
          "type": "0",
          "dataConfig": null,
          "level": 1
        },
        {
          "id": 27,
          "pid": 15,
          "name": "台股",
          "pinyin": "tw",
          "path": "/new/tw",
          "orderBy": 0,
          "target": "0",
          "status": "0",
          "listView": "list.html",
          "articleView": "article.html",
          "seoTitle": "",
          "seoKeywords": "",
          "seoDescription": "",
          "type": "0",
          "dataConfig": null,
          "level": 1
        },
        {
          "id": 28,
          "pid": 15,
          "name": "科技",
          "pinyin": "AI",
          "path": "/new/AI",
          "orderBy": 0,
          "target": "0",
          "status": "0",
          "listView": "list.html",
          "articleView": "article.html",
          "seoTitle": "",
          "seoKeywords": "",
          "seoDescription": "",
          "type": "0",
          "dataConfig": null,
          "level": 1
        }
      ],
      "level": 1
    },
    {
      "id": 25,
      "pid": 15,
      "name": "美股",
      "pinyin": "mg",
      "path": "/new/mg",
      "orderBy": 0,
      "target": "0",
      "status": "0",
      "listView": "list.html",
      "articleView": "article.html",
      "seoTitle": "",
      "seoKeywords": "",
      "seoDescription": "",
      "type": "0",
      "dataConfig": null,
      "level": 1
    }
  ],
  "_locals": {},
  "cache": false
}