是否可以在 .eleventy 配置文件中使用“addGlobalData”?
Is it possible to use `addGlobalData` within the .eleventy configuration file?
在 Eleventy 的文档 (https://www.11ty.dev/docs/data-global-custom/) 中,它声明您可以使用以下选项作为添加自定义全局数据的一个选项:
// .eleventy.js
module.exports = function(eleventyConfig) {
eleventyConfig.addGlobalData("myFunctionPromise", () => {
return new Promise((resolve) => {
setTimeout(resolve, 100, "foo");
})
});
};
当试图在 .eleventy.js
项目配置文件中使用它时,它失败了:
> eleventyConfig.addGlobalData is not a function
但是,可以使用 eleventyConfig.addCollection
在 eleventyConfig
上定义自定义集合,没有任何问题。
这里有什么问题?
addGlobalData
配置即将在 Eleventy v1.0.0 中推出(写在页面标题旁边的 header 中)。此版本尚未发布。
如果你想使用 Eleventy v1.0.0 的金丝雀版本,你可以安装它:
npm install @11ty/eleventy@canary
请记住,这是一个金丝雀版本,可能存在错误或其他问题。您可以通过 GitHub milestone. In the meantime, you can use global data files 跟踪 1.0 的进度,以将全球数据添加到您的站点。
在 Eleventy 的文档 (https://www.11ty.dev/docs/data-global-custom/) 中,它声明您可以使用以下选项作为添加自定义全局数据的一个选项:
// .eleventy.js
module.exports = function(eleventyConfig) {
eleventyConfig.addGlobalData("myFunctionPromise", () => {
return new Promise((resolve) => {
setTimeout(resolve, 100, "foo");
})
});
};
当试图在 .eleventy.js
项目配置文件中使用它时,它失败了:
> eleventyConfig.addGlobalData is not a function
但是,可以使用 eleventyConfig.addCollection
在 eleventyConfig
上定义自定义集合,没有任何问题。
这里有什么问题?
addGlobalData
配置即将在 Eleventy v1.0.0 中推出(写在页面标题旁边的 header 中)。此版本尚未发布。
如果你想使用 Eleventy v1.0.0 的金丝雀版本,你可以安装它:
npm install @11ty/eleventy@canary
请记住,这是一个金丝雀版本,可能存在错误或其他问题。您可以通过 GitHub milestone. In the meantime, you can use global data files 跟踪 1.0 的进度,以将全球数据添加到您的站点。