如果我想将模板绑定到一个普通的旧字符串数组,我该在$ {??}表达式中放什么?
我希望这段代码不要太短,以免引起混淆:
<ul data-bind="template: { name: 'authorTemplate', foreach: authors }">
</ul>
作者在哪里 ["a", "b", "c"]
<script type="text/x-jquery-tmpl" id="authorTemplate">
<li>${what_do_I_put_here???}</li>
</script>
我试过了:val
value
this
和this.toString()
。最后两个显示了[object Object],所以我怀疑我离那儿很近。