5

我正在从 WCF 服务获取数据,然后映射并将数据与我的 DOM 对象绑定:

var PayinyVM = {};

    $.getJSON('/service/PaidService.svc/PaidList', function (data) {
        var tmp = JSON.stringify(data.d);

        PayinyVM.model = ko.mapping.fromJSON(tmp);
        ko.applyBindings(PayinyVM);
    }); 

结果在我的 DOM 上显示为例外,将其绑定到模型。我找不到的是如何添加一些计算的 observable 假设我的数据返回的是 FirstName 和 LastName 的人,我怎样才能使用 FN + ' ' + LN 创建一个计算的 observable FullName。

4

3 回答 3

10

这是你的小提琴的工作副本,我不得不做出很多假设,因为你的小提琴甚至不是正确的 javascript,看起来很困惑,甚至没有提到淘汰赛

var PaidPeople = function(data) {
    var self = this;
    ko.mapping.fromJS(data, {}, this);
    this.fullName = ko.computed(function () {
                    return self.Name() + " : just ";
                });
}

var PayinyVM = function (data) {
                var self = this;

                ko.mapping.fromJS(data, {
                    'model' : {
                        create: function(options) {
                            return new PaidPeople(options.data);
                    }                        
                  }
                }, self);                
            };

var data = {model:[{__type: "PaidPeople:#model", Amount:110, Attendee:1, Name:'John'}]};

ko.applyBindings(new PayinyVM(data)); ​

和一个有效的小提琴:http: //jsfiddle.net/qeUHd/

于 2012-06-06T01:15:56.003 回答
4

您可以通过创建内部映射的模型对象来反转映射。

var PayinyVM = function (data) {
    var self = this;
    ko.mapping.fromJS(data, {}, self);
    this.fullName = ko.computed(function () {
        return self.Name() + " : just ";
    });
};

$.getJSON('/service/PaidService.svc/PaidList', function (data) {    
    ko.applyBindings(new PayinyVM(data.d));
});

希望这可以帮助。

于 2012-06-05T23:20:34.077 回答
2

原来我必须在 javascript 中定义所有视图模型属性,以便敲除可以使用属性初始化视图模型,然后再用服务器数据更新它

参考:http ://www.underwatergorilladome.com/how-to-use-knockouts-computed-observables-with-the-mapping-plugin/

http://jsfiddle.net/GLDxx/2/

var model = {
    username : ko.observable(),
    get_student_info : ko.mapping.fromJS(
        {
            usr_lname : null,
            usr_fname : null,
            gender : null,
            dob : null
        },
        {
            create: function(options) {
                return (new (function () {
                    this.name = ko.computed(function () {
                        if (this.usr_lname == undefined || this.usr_fname == undefined)
                            return null;
                        else
                            return this.usr_lname() + ' ' + this.usr_fname(); 
                    }, this);

                    // let the ko mapping plugin continue to map out this object, so the rest of it will be observable
                    ko.mapping.fromJS(options.data, {}, this);
                }));
            }
        }
    )
};
于 2014-03-20T04:33:46.253 回答