如何使用 CanJS 进行双向绑定?
Enter the Text : <input type="text" name="name" can-value="enteredText" />
Display the Text: {{enteredText}}
可以显示多种方法吗?使用视图模型?
如何使用 CanJS 进行双向绑定?
Enter the Text : <input type="text" name="name" can-value="enteredText" />
Display the Text: {{enteredText}}
可以显示多种方法吗?使用视图模型?
can-value
是 v2 中的旧方法。在 Canjs 4.0 中,您可以像这样执行两种方式绑定:
Enter the Text : <input type="text" name="name" value:bind="enteredText" />
Display the Text: {{enteredText}}
请参阅:https ://canjs.com/doc/can-stache-bindings.twoWay.html
这是一个演示语法的 jsbin: