0
JSFiddle source
我用hello.bind('Hi!!!')
但裏面方法hello
我得到的視圖模型對象,而不是字符串值。任何想法爲什麼?knockout.js綁定字符串值的功能
JSFiddle source
我用hello.bind('Hi!!!')
但裏面方法hello
我得到的視圖模型對象,而不是字符串值。任何想法爲什麼?knockout.js綁定字符串值的功能
您的標記更改爲:
<button data-bind="click: hello.bind($data, 'Hi!!!')">Say hello</button>
從文檔:
Alternatively, if you prefer to avoid the function literal in your view, you can use the bind function, which attaches specific parameter values to a function reference.
更多關於綁定可以在Mozilla找到。
是的,這個工程!謝謝 – Ilya