我正在进行 ajax 调用并从看起来像的数组中获取结果result = [one, two, three];
我需要将其转换为数组并对其进行迭代。由于我的字符串在 values 数组周围没有引号,因此无法正确读取。
这是我的代码,如果你能告诉我正确的方法。谢谢。
xmlhttp.open("POST","SearchServlet", true);
xmlhttp.onreadystatechange =
function(){
if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
resultData = xmlhttp.responseText;
// resultData = [one, two, three];
// need to make valid array to iterate it
for (var i = 0; i < resultData.length; i++) {
console.log(resultData[i]);
}
}
};