











You can generate multiple data cascade elements in one eleventyComputed.js file. Following is a working example.
This example generates data cascade elements from multiple .json files in the global data directory.
Assume you have data files named links.json and copyrights.json, and you only want to extract a portion of the json object. In this case, the entry element contains the useful data in the json object, and is a child of the feed element in this case.
The corresponding eleventyComputed.js file contents can look like the following:
_data/eleventyComputed.js
export default {
myCopyrights: (data) => {
return data.copyrights.feed.entry;
},
myLinks: (data) => {
return data.links.feed.entry;
},
};
module.exports = {
myCopyrights: (data) => {
return data.copyrights.feed.entry;
},
myLinks: (data) => {
return data.links.feed.entry;
},
};
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。