表结构是这样的:
这两个字段存的是数组数据前端每次发请求前都要转为string
// 数组=>string(前端代码) this.ruleForm.contact = JSON.stringify(this.ruleForm.contact); this.ruleForm.images = JSON.stringify(this.ruleForm.images);
拿到数据后又要JSON.parse()转换
如果不转换的话sql就会报错
感觉这样来回转换好麻烦,有好的解决方法么?
typeorm 有个类型是, 会主动帮你把数组转化的simple-array-column-type typeorm
别的没用过 不是很清楚了
548k questions
547k answers
4 comments
86.3k users