我想从下面的字符串中获取逗号分隔的 ID 和类型。
我尝试过拆分,但这需要多次拆分才能获取所需的结果。
请建议一种有效的方法来获取所需的输出,例如1234,4321
使用 js/jquery。
var tempString=
'[{"id":"1234","desc":"description","status":"activated","type":"type","name":"NAME"},
{"id":"4321","desc":"description1","status":"inactivated","type":"type","name":"NAME1"}]';