我有一个这样的模板:
<div data-bind='template: { name: "stringTemplate", foreach: stringCollection() }'> </div>
</div>
<script id='stringTemplate' type='text/html'>
// I want to display string from collection here
</script>
如何访问模板中的字符串对象?
答案 0 :(得分:3)
在jQuery模板中,您可以使用$data
来引用绑定的整个对象。
所以,你会做类似的事情:
<span data-bind="text: $data"></span>
或
${ $data }