我有一个来自服务器的数据,像这样作为参考值作为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遗弃了吗?