注入器被用于将静态代码片段注入生成的 HTML 的 <head> 和/或 <body> 中。 Hexo 将在 after_render:html 过滤器 之前 完成注入。
概要
hexo.extend.injector.register(entry, value, to);entry <string>
在 HTML 中的注入代码的位置。
支持这些值:
head_begin: 注入在<head>之后(默认)head_end: 注入在</head>之前body_begin: 注入在<body>之后body_end: 注入在</body>之前
value <string> | <Function>
除了字符串,也支持返回值为字符串的函数
需要注入的代码片段。
to <string>
哪些页面会被注入代码
default: 注入到每个页面(默认值)home: 只注入到主页(is_home()为true的页面)post: 只注入到文章页面(is_post()为true的页面)page: 只注入到独立页面(is_page()为true的页面)archive: 只注入到归档页面(is_archive()为true的页面)category: 只注入到分类页面(is_category()为true的页面)tag: 只注入到标签页面(is_tag()为true的页面)- 或是其他自定义 layout 名称,自定义 layout 参见 写作 - 布局(Layout)
注入器还有一些内部函数,如果你要使用它们,请参考 hexojs/hexo#4049。
示例
const css = hexo.extend.helper.get("css").bind(hexo);
const js = hexo.extend.helper.get("js").bind(hexo);
hexo.extend.injector.register(
"head_end",
() => {
return css(
"https://cdn.jsdelivr.net/npm/aplayer@1.10.1/dist/APlayer.min.css",
);
},
"music",
);
hexo.extend.injector.register(
"body_end",
'<script src="https://cdn.jsdelivr.net/npm/aplayer@1.10.1/dist/APlayer.min.js">',
"music",
);
hexo.extend.injector.register("body_end", () => {
return js("/js/jquery.js");
});上述代码将会把 APlayer.min.css(<link> 标签)和 APlayer.min.js (<script> 标签)注入到所有 layout 为 music 的页面的 </head> 和 </body> 之前。 此外,jquery.js(<script> tag)将会被注入到生成的每个页面的 </body> 之前。
访问用户配置
使用以下任何一个选项:
const css = hexo.extend.helper.get("css").bind(hexo);
hexo.extend.injector.register("head_end", () => {
const { cssPath } = hexo.config.fooPlugin;
return css(cssPath);
});index.js/* global hexo */ hexo.extend.injector.register("head_end", require("./lib/inject").bind(hexo));
lib/inject.jsmodule.exports = function () { const css = this.extend.helper.get("css"); const { cssPath } = this.config.fooPlugin; return css(cssPath); };
lib/inject.jsfunction injectFn() { const css = this.extend.helper.get("css"); const { cssPath } = this.config.fooPlugin; return css(cssPath); } module.exports = injectFn;
index.js/* global hexo */ hexo.extend.injector.register("head_end", require("./lib/inject")(hexo));
lib/inject.jsmodule.exports = (hexo) => () => { const css = hexo.extend.helper.get("css").bind(hexo); const { cssPath } = hexo.config.fooPlugin; return css(cssPath); };
lib/inject.jsconst injectFn = (hexo) => { const css = hexo.extend.helper.get("css").bind(hexo); const { cssPath } = hexo.config.fooPlugin; return css(cssPath); }; module.exports = (hexo) => injectFn(hexo);