JavaScript オブジェクトに値を代入しようとしていますが、そうすると、'push'、'pop'、'splice' などの配列メソッドのように見えるジャンク値がいくつかあります。以下は私のコードです。
function myTest(){
var userArray = new Object();
var req = new Request.JSON({
url: '/myTest.php',
method: 'post',
noCache: true,
data: 'userID=999',
onSuccess: function(json){
for(var key in json){
userArray = json[key];
for (var row in userArray){
alert(row) // This returns values like '$family','push','pop', 'reverse' etc.
}
}
},
onException: function(xhr){
alert("Unable to process your request");
},
onFailure: function(xhr){
alert("Unable to connect to the server");
}
}).send();
}
ここで何が欠けているのかわかりませんが、確かに欠けているようです。これに関するヘルプは大歓迎です。