js中string转map的方法时间:2022-03-03 04:17:55 例如: var r = "{'msg':'你好'}" ; var map = eval("("+r+")"); //r为String类型的数据 var xx = map.msg; //此时 xx 的值为 你好