这是一个新手问题,更不用说我对 knockout.js 很陌生。我要做的就是从服务器获取单个种植者(姓名、公司、地址)的详细信息并将其显示在网页上。我正在使用 $(document).bind('pageinit', function () 因为我使用的是 jQuery mobile。
现在我的代码是:
<h3><span data-bind="text: Name"></span></h3>
<span data-bind="text: Company"></span><br />
<span data-bind="text: Address"></span>
<script type="text/javascript">
$(document).bind('pageinit', function () {
function MyGrowerModel() {
//this.Name = "My Name";
//this.Company = "My Company";
//this.Address = "My Address";
//Load initial state from server, convert it to Task instances, then opulate self.tasks
$.getJSON("Grower/GetGrower", function (allData) {
this.Name = allData.Name;
this.Company = allData.Company;
this.Address = allData.Address;
alert(allData.Name); //works!
});
}
ko.applyBindings(new MyGrowerModel());
});
</script>
我收到“无法解析绑定。消息:ReferenceError:名称未定义;绑定值:名称
这是有道理的,因为 Name、Company 和 Address 都在 getJSON 函数的范围内。所以,我的问题是,在哪里声明这些变量以及如何更新这些 ViewModel 数据?
我不想使用映射插件。
任何帮助表示赞赏。