我有以下json {"movieList":"[4,5,12]"}
,我需要转换为继续字符串,如"4,5,12"
怎么做?
答案 0 :(得分:0)
首先,您的JSON数据格式不正确。
正确的格式为'{"movieList":[4,5,12]}'
。要将JSON int数组转换为字符串,我使用了这种方法。
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
</head>
<script>
$(document).ready(function(){
$('#converter').click(function(){
jsonData ='{"movieList":[4,5,12]}'
alert("JSON data is" + jsonData);
var parsedata= $.parseJSON(jsonData);
var finalString= parsedata.movieList.toString();
alert("String is" + finalString);
});
});
</script>
<body>
<div class="table-responsive container">
<input type=button id="converter" text="Switch Mode" value="Convert" >
</div>
</body>
</html>
&#13;