需要在json中删除数组

时间:2018-05-14 08:53:02

标签: node.js

var meds = [     {         “sno”:1,         “brandName”:“EPIDOSIN 8 MG INJECTION”,         “companyName”:“TTK Healthcare Ltd”,         “价格”:“17卢比”,         “packagingOfProduct”:“1瓶(每瓶1瓶)” } ]

1 个答案:

答案 0 :(得分:0)

根据你上面的评论,你想要17卢比。你的阵列中有17个。

var value =  meds["price"].split(""); // split Rs. 17 with space
var price = value[1]; // at index 1 you will get value 17

现在你可以做任何你想做的价格 如果要将其设置回数组,请执行此操作

meds["price"] = price;

希望这会有所帮助!