と私は戻ってすべての私のコレクションの取得するためにMongoDBを使用しています:。私は返すようにしたいコレクションを取得した後)(db.collectionを送信しようと見つける()クライアントに戻すAJAXリクエスト
rawData = db.collection('Forecasts').find({});
これはres.json()関数を介してクライアント側に送信されます。どのように私はそれを返すことができます。
(エクスプレスおよびノードのJSを使用して)私のサーバー側のコードを追加:
router.post('/forecastHistory', (req, res, next) => {
var rawData;
var forecasts = [];
// Connection url
var url = 'mongodb://localhost:27017/SimplyForecastDB';
// Connect using MongoClient
MongoClient.connect(process.env.MONGODB_URI || url, (err, db) => {
if (err) {
console.log('Unable to connect to MongoDB server.');
}
console.log('Connected to MongoDB server.');
rawData = db.collection('Forecasts').find({}).forEach(function(doc) {
//console.log(JSON.stringify(doc, undefined, 2));
forecasts.push(doc);
});
db.close();
});
forecasts.forEach(function(doc){
console.log(JSON.stringify(doc, undefined, 2));
});
res.json(forecasts);
});
(JSのクエリとAjaxを使用して)にここに私のクライアント側のコードを追加:
$("#history").click(function() {
$.post('/forecastHistory', function(result) {
result.forEach(function(forecast){
$("#forecast").html(
"<p class=\"lead\">" + forecast.location + "</p>" +
"The summary of today: " + forecast.summary +
"<br>" + "Temp: " + forecast.temperature + " C" +
"<br>" + "It feels like: " + forecast.feelsLike + " C" +
"<br>" + "The Humidity: " + forecast.humidity + " %" +
"<br>" + "Wind Speed: " + forecast.windSpeed + " km/h" +
"<br>"
)
});
});
});
を私がいただければ幸いです助けて。
こんにちは、使用しています。あなたはあなたのクライアントのconsole.logの結果を返して、結果を教えてください。 – kikiwie
こんにちは、私は、クライアント側にrawDataオブジェクトを移動する必要があります、私のためにこのサーバー側のコードで動作しません。 –