我使用所有方法将数组从 php 传输到 js,但最好的解决方案是使用
JSON_encode($arr);
并且所有解码它的方法都失败了最后我决定手动进行它在JavaScript中接收到的数据是这样的:[“208”,“2812”]通过这个java代码转换为整数数组,但我不知道如何将其转移到 javascript
String arr = "[\"208\",\"2507\"]";
//this its the output of him ["208","2507"]
String[] items = arr.replaceAll("\\[", "").replaceAll("\\]", "").split(",");
int[] results = new int[items.length];
for (int i = 0; i < items.length; i++) {
results[i] = Integer.parseInt(items[i]);
}