是否可以將字符串從JSON.stringify轉換回數組?將字符串從JSON.stringify轉換爲數組
-2
A
回答
10
JSON.parse是你的朋友,並回答:)
//examples:
JSON.parse('{}'); // {}
JSON.parse('true'); // true
JSON.parse('"foo"'); // "foo"
JSON.parse('[1, 5, "false"]'); // [1, 5, "false"]
JSON.parse('null'); // null
相關問題
- 1. 轉:將字符串數組轉換爲Json數組字符串
- 2. 將字符串數組轉換爲字符串數組
- 3. 注意:數組到字符串轉換將數組轉換爲字符串
- 4. 將json轉換爲數組php將數組轉換爲字符串轉換
- 5. 將字符串轉換爲int數組
- 6. MongoDB將字符串轉換爲數組
- 7. 將PHP字符串轉換爲數組
- 8. 將javascript字符串轉換爲數組
- 9. 將字符串轉換爲json數組
- 10. 將數組轉換爲字符串Javascript
- 11. 將數組轉換爲字符串Nesc
- 12. 將字符串轉換爲數組(android)
- 13. 將數組值轉換爲字符串
- 14. PHP將字符串轉換爲數組
- 15. 將Python數組轉換爲字符串
- 16. 將int轉換爲字符串數組
- 17. 將JSONArray轉換爲字符串數組
- 18. PHP:將數組轉換爲字符串?
- 19. JS將字符串轉換爲數組
- 20. 將字符串數組轉換爲ImageButton
- 21. 將字符串轉換爲數組
- 22. 將Dictionary.keyscollection轉換爲字符串數組
- 23. 將數組轉換爲字符串
- 24. 將php字符串轉換爲數組
- 25. 將array.description字符串轉換爲數組
- 26. 將字符串轉換爲int數組
- 27. 將字符串數組轉換爲java.util.List
- 28. 將字符串轉換爲位數組
- 29. 將字符串轉換爲2d數組
- 30. 將Java字符串轉換爲數組
JSON.parse()來也許? – Sam
如果您使用jquery,則可以使用parseJSON – karthikr