案例如当前一个字符创"[111.11121, 212.34343]"
将其转为可以使用的数字,则
const item = "[111.11121, 212.34343]"
const a = JSON.parse(item.replaceAll(" ", ""))
// a的值为[111.11121, 212.34343]
案例如当前一个字符创"[111.11121, 212.34343]"
将其转为可以使用的数字,则
const item = "[111.11121, 212.34343]"
const a = JSON.parse(item.replaceAll(" ", ""))
// a的值为[111.11121, 212.34343]