我有一个ajax函数,可以给出响应:
[{"lot_no":"Lot A","sent_weight":"20.8","received_weight"
:"19.3"},{"lot_no":"Lot B","sent_weight":"6.8","received_weight"
:"5.3"},{"lot_no":"Lot C","sent_weight":"7.8","received_weight"
:"10.3"}]
我想根据Lot no绘制谷歌功能图,发送重量和收到的重量,但问题是: 类型不匹配。值“20.8”与列索引1 中的类型编号不匹配 如何使用这些响应数据制作谷歌功能图
答案 0 :(得分:0)
答案 1 :(得分:0)
您的ajax响应正在返回相应键中的字符串值。将字符串转换为浮点值example: parseFloat("10.33")
,这将返回数字格式。