我有如下数据:
"[{\"workstationName\":\"Test Workstation Id 123\"},{\"workstationName\":\"Alex's Workstation\"}]"
我希望它只是:
[{"workstationName":"Test Workstation Id 123"},{"workstationName":"Alex's Workstation"}]
我应该知道这一点。我试过a.to_ary
了,但没有用。有什么直接的方法来处理这个吗?谢谢。