2

我正在尝试获取 json 的基本 hello 工作示例,自动映射它然后绑定到可观察对象,我确定我遇到了一些基本错误。

从 ajax 调用返回的 JSON

"{\"Content\":\"hello world\"}"

JS

function ViewModel() {
var self = this;

self.message = ko.observable();

$.getJSON("/home/getmessage", function (response) {
    var mapped = ko.mapping.fromJSON(response);
    self.message(mapped.Content);
});
};

ko.applyBindings(new ViewModel());

我得到以下内容来代替我期待的“你好世界”

function c(){if(0<arguments.length){if(!c.equalityComparer||!c.equalityComparer(d,arguments[0]))c.I(),d=arguments[0],c.H();return this}a.U.La(c);return d}
4

1 回答 1

1

排序后,我忽略了 ko.mapping 返回 observables 的事实,因此您必须将它们作为函数调用以获取它们的值。

function viewModel() {
var self = this;

self.content = ko.observable();

$.getJSON("/home/getmessage", function (response) {
    var mapped = ko.mapping.fromJSON(response);
    self.content(mapped.Content());
});
}

ko.applyBindings(new viewModel);
于 2012-09-12T09:21:46.163 回答