Using AngularJs and MongoDB/Mongoose

后端 未结 2 1495
别跟我提以往
别跟我提以往 2020-12-13 11:15

I am trying to connect AngularJS with MongoDB using Mongoose. I would like to pass the Models to be used by the Controllers, so I can $scope to the data. I am not sure if I

相关标签:
2条回答
  • 2020-12-13 11:36

    You'll need an interim step there. Going directly from Angular to Mongo will not work out. If you want a generic REST interface to Mongo with which you can utilize Angular's bundled $http services, take a look at the list of REST services on Mongo's site.

    Mongo REST Services

    http://www.mongodb.org/display/DOCS/Http+Interface#HttpInterface-RESTInterfaces

    Angular $http Service:

    http://docs.angularjs.org/api/ng.$http

    There's a lot of different options here, but this is likely the easiest way to get up and going.

    0 讨论(0)
  • 2020-12-13 11:41

    The interim step has been provided by a npm module, angoose. It does exactly what you asked for: making the mongoose models available as Angular injectable factories. All you need to do is just including a script tag in your html file.

    angoose module:

    https://npmjs.org/package/angoose

    Disclaimer: I'm the contributor of angoose module.

    0 讨论(0)
提交回复
热议问题