我使用以下代码在控制台中打印响应。但我在控制台中得到了空值。
在 index.php 网址中,我有 JSON 代码
new Ajax.Request('http://10.239.50.92/sample/index.php', {
method:'get',
onSuccess: function(products){
//alert(products.hasOwnProperty(value));
//alert(products.hasOwnProperty());
console.log(products.responseJSON);
}
});