0
我正試圖解決數據可以包含引用其他數據的標籤的情況。所以,如果我的灰塵文件是這樣的:幫助器中的上下文數據中的標籤
Document.title: {Document.title}
cfg.title: {cfg.title}
output: {#ctx key="{cfg.title}" /}
和我的背景是這樣的:
{
cfg: {
title: '{Document.title}'
}
, Document: {
title: 'Here is my title'
}
, ctx: function(chunk, context, bodies, params){
return context.resolve(params.key);
}
}
我得到以下輸出:
Document.title: This is the title
cfg.title: {Document.title}
output:
什麼我的「CTX 「助手功能需要看起來像輸出」這是我的標題「? (注意:我知道指向Document.title會更容易些,但是'cfg'和'Document'是從不同的地方生成的,並在渲染時合併)
這將工作。謝謝! 注意任何人找到這個答案,如果你在2.7之前工作的灰塵,你需要添加第二個參數dust.compile。 –