|
为什么写不进去,自建表发布完成 O2重新启动完成 数据库表单都有了 为什么写不进去 那里出来问题????????????
var table = new this.Table("dgncsTable");
var values = [];
this.data.datatable.data.forEach(function(item){
var par = {
"subject": this.data.subject,
"blPerson": this.data.blPerson,
"zzspr": this.data.zzspr,
"workid": this.workContext.getWork().id,
"textfield": item.textfield,
"count": item.count,
"price": item.price,
"total": item.total,
"textfield_2": item.total
}
values.push(par);
}.bind(this));
table.insertRow(values);
|
|