Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
原始数据是"[[x1, y1],[x2,y2]]"
"[[x1, y1],[x2,y2]]"
我如何摆脱引号?eval并且JSON.parse不给出想要的结果rawdata = [[x1,y1],[x2,y2]]
eval
JSON.parse
rawdata = [[x1,y1],[x2,y2]]
来自服务器的数据有问题。这最初是在 64 位服务器上开发的,但移至 32 位服务器并且整数(实际上是时间戳)被截断。
JSON.parse() 确实适用于带引号的返回变量。