私は現在使用しています
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]
。これを解決するには?