我试图了解模板绑定如何与 WinJS 一起工作。
我发现您必须在数据属性上指定绑定:
<div data-wind-bind="innerText:myProperty"></div>
我想我也看到了可以定义多个属性的东西......
<div data-wind-bind="style.color: fontcolor; innerText: timestamp"></div>
是否还有与其他模板引擎类似的语法,我可以指定它的内联方式(只是其他模板引擎的一个示例)
<div>This is my property {{property1}} and it was created {{created_at}}</div>
现在重要的是它<% property %>
或#{property}
只是将被模板引擎解析和替换的东西
谢谢