我目前正在使用
rows.length
在 JS 中,它给了我输出的行数。
实际代码是这样的
oResources.html("<h3>Number of Rows = "+ rows.length+"</h3>");
输出是Number of Rows = 1
但我想查看行的值而不是行数。
编辑后整个函数如下图所示:
this.get_resources = function(rows)
{ var oResources = $('#resources-'+ options.plugin_uuid);
//oResources.html("<h3>Number of Rows = "+ rows.length+"</h3>");
//oResources.html("<h3>Content of Rows = "+ rows.join(' :: ')+"</h3>");
var data = ""; // Temporary `data` variable
for(var key in rows) { // Loop through the rows
if(rows.hasOwnProperty(key)){
data += rows[key] + "<br />\n"; // Add the current row to the data
}
}
oResources.html(data); // Display the data
//console.log(rows.length);
};
现在打印出来了[object] [object]
我的问题是:
输出应该是电子邮件 ID而不是[object] [object]
. 如何解决这个问题?