异步将上下文数据加载到dust.js中

时间:2018-11-16 13:29:37

标签: javascript dust.js

我有一个来自服务器的数据,像这样作为参考值作为URL返回

{
   "hellovar1": "https://someurl/something1" 
   "hellovar2": "https://someurl/something2" 
   "hellovar3": "https://someurl/something3" 
}

dust.js是否可以加载此类值并将其异步插入模板中,从而在加载后已渲染的模板中将占位符一一替换?

例如,通过执行类似的操作

{
   "hellovar1": function() { 
    return $.get("https://someurl/something1");}, 
    "hellovar2": "https://someurl/something2" 
    "hellovar3": "https://someurl/something3" 
}

尽管在ust.js github上似乎没有太多活动,但它已被linkedin遗弃了吗?

0 个答案:

没有答案