Knockout JS:ko.applyBindings 不是函数
我正在尝试在一个简单的 Web 应用程序中使用 Knockout js。 这是我的虚拟 javascript 代码:
function MainViewModel() {
this.myText = ko.observable('Hello world');
}
var MainViewModelInstance = new MainViewModel();
ko.applyBindings(MainViewModelInstance);
但是当我运行 index.html 时,调试控制台显示“ko.applyBindings 不是函数”!
帮助! 谢谢
I'm trying to use Knockout js in a simple web application.
Here's my dummy javascript code:
function MainViewModel() {
this.myText = ko.observable('Hello world');
}
var MainViewModelInstance = new MainViewModel();
ko.applyBindings(MainViewModelInstance);
But when I run the index.html, the debug console says "ko.applyBindings is not a function"!
Help!
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您尚未在源代码中包含 knockout.js 库的链接,或者链接错误。解决这个问题就可以了。
其中/scripts目录是knockoutjs在服务器上所在的位置。
编辑
这是您的代码的工作示例。
You have not included the link to the knockout.js library in your source code or the link is wrong. Fix this and it will work.
Where the /scripts directory is the location on the server where knockoutjs resides.
EDIT
Here is an example of your code that works.