gpt4 book ai didi

javascript - 将由数组 toString() 生成的字符串转换回数组

转载 作者:行者123 更新时间:2023-11-30 11:04:12 24 4
gpt4 key购买 nike

我将数组转换为字符串并将其添加到 TextArea。用户编辑了 TextArea,我现在需要通过调用我最初生成的相同数据字符串来更新数组。你会怎么做?

我生成并需要转换回数组的字符串是:

{"color":"red","x":218,"y":-11,"width":60,"height":60},{"color":"blue","cx":114,"cy":83,"radius":30} 

我尝试使用 JSON 解析器 JSON.parse(text)

最佳答案

格式化你的字符串:

const text = '{"color":"red","x":218,"y":-11,"width":60,"height":60},{"color":"blue","cx":114,"cy":83,"radius":30}'

console.log(JSON.parse(`[ ${text}]`))

关于javascript - 将由数组 toString() 生成的字符串转换回数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56381637/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com