💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
# 局部变量 局部变量用于模版渲染,也就是模版中的 `site` 变量。 ## 默认变量 | 变量 | 描述 | | --- | --- | | `posts` | 所有文章 | | `pages` | 所有分页 | | `categories` | 所有分类 | | `tags` | 所有标签 | ## 获取变量 ``` hexo.locals.get('posts' ``` ## 设置变量 ``` hexo.locals.set('posts'function{ return }); ``` ## 移除变量 ``` hexo.locals.remove('posts' ``` ## 获取所有变量 ``` hexo.locals.toObject(); ``` ## 清除缓存 ``` hexo.locals.invalidate(); ```