the JSON obtained from the background is in the form of a string:
{"createTime":1528773852384,"dealPrice":"0.000000","id":19144683686985728,"isView":true,"totalPrice":"1.000000","waitProduct":"1.000000"}
the id of this data is 19144683686985728, but after JSON.parse (), it is found that the data has been changed
.{
"createTime": 1528773852384,
"dealPrice": "0.000000",
"id": 19144683686985730,
"isView": true,
"totalPrice": "1.000000",
"waitProduct": "1.000000"
}
after id, the two digits have been changed from 28 to 30. How to make it parse and solve normally? it is best to solve it at the front end
.