私のクエリの結果をNode.jsのJSONレスポンスにする方法を知りたいのですが現在、JSONのDBから結果を取得していますが、その値にアクセスできません。私のコードは以下の通りです。ラインresponseJSON.response = results[0].headline
ことで データベース結果をJSONに変更
connection.connect();
connection.query('select * from ttnews order by post_date DESC Limit 0,10',
function (error, results, fields) {
if (error) throw error;
console.log(results);
});
connection.end();
responseJSON.response = results[0].headline;
callback(null, responseJSON);
は、私は任意の助けが理解されるであろう
results is undefined
エラーを取得しています。 エクスプレス4.xので
こんにちは、あなたは完全な提供することができますがログに記録されますあなたのメソッドのコード? 'express 'を使っていますか? – SirWojtek