weX5如何绑定KO对象

define(function(require){ 
   var $ = require("jquery"); 
   var justep = require("$UI/system/lib/justep");
   var Model = function(){
           this.callParent(); 
           this.myText = justep.Bind.observable("bind!");  
   }; 
   Model.prototype.button2Click = function(event){  
           this.myText.set(false);  
   };  
       
   return Model;  
});
原文地址:https://www.cnblogs.com/lxcmyf/p/6781782.html