无法使用get set 访问器
Object.defineProperty(TestPage.prototype, “text”, { get: function () { return this.data.text; }, set: function (text) { console.log(“text”, text); this.setData({ text: text }); }, enumerable: true, configurable: true });
当给 text赋值的时候,并不能调用set:function(text){}