cloneObj = function(obj){ if(ko.isWriteableObservable(obj)) return ko.observable(obj()); //this is the trick if(obj === null || typeof obj !== 'object') return obj; var temp = obj.constructor(); // give temp the original obj's constructor for (var key in obj) { temp[key] = cloneObj(obj[key]); } return temp; };(http://stackoverflow.com/questions/14055279/javascript-clone-object-with-knockoutjs-observable-properties?rq=1)
Có thể tôi không phải là người bạn cảm thấy yêu thương nhưng tôi cũng xin cảm ơn vì bạn đã có mặt trên đời và cho tôi biết rằng được yêu thương ai đó là điều hạnh phúc
Thứ Sáu, 20 tháng 12, 2013
Javascript clone object
Đăng ký:
Bài đăng (Atom)