-2
app.get('/', function(req,res){
conn.query('SELECT * FROM db', function(err, rows, fields){
res.send(rows.length);
});
});
當我去'/'
網址, 我得到一個錯誤說:節點JS array.length不工作
RangeError: Invalid status code: 2 at ServerResponse.writeHead (_http_server.js:192:11) at ServerResponse.writeHead (/var/www/html/node_modules/....
爲什麼會發生?
我可以發送行,結果是:
[{"id":"1", "email":"[email protected]", "nickname":"hahah"}, {"id":"2", "email":"[email protected]", "nickname":"hohoho"}]
length
財產不能正常工作。
或者您可以使用'res.status(200).send(rows.length);' –
謝謝您的評論。我會嘗試! –