共计 508 个字符,预计需要花费 2 分钟才能阅读完成。
strapi 的关联关系。
1,首先在治理页面,增加 relation(援用)字段。抉择对应关系,是一对一还是一对多。
2,当抉择关联关系为,一对多时,要以数组模式传输。
project_forms 就是关联的字段,只有以数组模式寄存 关联对象 id 就好。
var tempObj = {
cpName: '测 03',
project_forms: ['12']
}
2.1 当关联关系抉择一对一的时候,conectList 为数字 id 就好,不必是数组,数组反而传不过来。
this.projectForm.conectList= null;
let temp = this.gameFormList.filter(res => res.value === val)
this.projectForm.conectList = temp[0].id;
3,在进行表单保留的时候,对于关联关系的字段要 传 id,而不是对象,不然会报错;
error error: update "project_lists" set "channel" = $1, "updated_at" = $2 where "channel" = $3 returning * - invalid input syntax for integer: "{"1"}"
正文完