|
楼主 |
发表于 2016-7-8 18:28:36
|
显示全部楼层
本帖最后由 tlkj 于 2016-7-8 18:29 编辑
您好现在打开页面报错。
Model.prototype.modelLoad = function(event) {
data = this.comp("uploadData");
var personName = this.getContext().getCurrentPersonName();
data.setFilter("filter1", "Pic.creator ='" + personName + "'");
data.refreshData();
if (data.getCount() == 0) {
data.newData();
}
biz.Request.sendBizRequest({
"context" : this.getContext(),
"action" : "showAction",
"parameters" : '',
"callback" : function(data) {
data.ignoreError = false;
if (data.state) {
alert(data.response);
}
}
});
};
|
|