还原处理

This commit is contained in:
aixianling
2023-03-02 10:24:22 +08:00
parent 6b9a777653
commit 664e909920

View File

@@ -26,6 +26,7 @@ const insert = ({table, form}) => {
if (v) {
if (typeof v == "object") {
v = JSON.stringify(v)
v = v.replace(/(')/g, "\\$1")
}
}
return `${e}='${v}'`