Mongoose を使用して AngularJS を MongoDB に接続しようとしています。コントローラーが使用するモデルを渡したいので、データに $scope を適用できます。Angular Service を設定する必要があるかどうかわかりません。もしそうなら、正しい方向に向けていただけますか。ありがとうございました。
概要:
モデル:
var mongoose = require('mongoose');
var db = mongoose.createConnection('mongodb://localhost:3000/database');
var orderSchema = new mongoose.Schema({
routeFrom : String,
routeTo : String,
leaving: String
});
var Order = db.model('Order', orderSchema);
module.exports = Order;
コントローラ:
// of course 'require' does not work but you get the idea
function OrderController($scope) {
return $scope.orders = Order.find({});
}