实例一:增,向数据库添加一条数据。
数据库的数据结构示例(在后台文档查找的):
方法
实例二: 从主表通过编码点击进去获取子表(分析: 要有点击方法,要有主ID,就是进去那条数据子表的id)
获取子表页面的时候,要传主表ID去查询
@click="getDetail"
getDetail(){
......
getAction(url, {mainID: records.id}, 。。。)
}
总结:传参格式:
1,postAction(url, { materNo: recodes.materNo },'post').then.....
2, postAction(url, { materNo: recodes.materNo , id: recodes.id },'post').then.....
3,let params=[{
materNo: recodes.materNo ,
id: recodes.id,
materName: recodes.materName
}]
postAction(url, parmas,'post').then.....
4,