我嘗試瞭解模板綁定如何與WinJS一起使用。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}
只是一些將被模板引擎解析和更換
感謝