一:在数据的添加时一般注意的方法
在主从表中的添加方法中,在datapilot中的onSubControlAction(self.arg)中的代码是:
var code = arg.code;
switch(code){
case "+":
//得到主表的数据集对象
var dataSetDept = this.get("#主表dataSetde的ID");
//得到主表的数据集
var currentDept = dataSetDept.getData(#);
//根据主表的数据集得到其中的那个reference对应的数据集
var currendtEmployees = currentDept.get("主表中reference的name的值");
//根据得到的数据集向其中插入一条对象,注意的是:这里的deptId不是数据库中的字段,而是实体类的属性
currentEmployees.insert({deptId:currentDept.get("id")});