如何在外部 JS 文件中创建 KO.JS ViewModel 然后在 html 文件中使用它?这似乎是一件很简单的事情,但我无法让它工作,也找不到任何关于如何做到这一点的明确信息。如果我忽略了,我会道歉,如果有人能指出我的答案,我会删除它。
外部虚拟机:
var myApp = (function (myApp) {
myApp.ReportViewModel = function() {
var self = this;
self.test = ko.observable();
}
}(myApp || {}));
单独的 HTML 文件:
<!DOCTYPE html>
<html>
<head><title>My Page</title></head>
<body>
<table>
<tr>
<td>First Name</td>
<td><input type="text" data-bind='value: test'/></td>
</tr>
</table>
<h2>Hello, <span data-bind="text: test"> </span>!</h2>
<!-- reference this *before* initializing -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"> </script>
<script src="http://ajax.aspnetcdn.com/ajax/knockout/knockout-2.2.1.js"></script>
<script src="myApp.js"></script>
<!-- fire off your app -->
<script>
($function(){
var reportVM = new myApp.ReportViewModel();
ko.applyBindings(reportVM);
});
</script>
编辑 我已经进行了建议的更改。这就是我的项目现在的样子,但它仍然无法正常工作。此外,knockout.js 代码根本没有运行。