我有一个像这样动态的数组项["{text: "US"}", "{text: "Mexico"}", "{text: "Brazil"}"]。我需要将此 char "{替换为 this char { and this char }" this char }。最后替换后,我需要这样的输出[{text: "US"}, {text: "Mexico"}, {text: "Brazil"}]。如果它是单个对象意味着我可以替换。但是对于数组列表没有得到。我已经尝试如下,这个不起作用如何实现这个?非常感谢。谢谢你。
dynamicSubRegions =["{text: "US"}", "{text: "Mexico"}", "{text: "Brazil"}"];
var dynamicSubRegionsFinal = dynamicSubRegions[dynamicSubRegions.indexOf('"{')] = '{';