Access MongoDB directly via JavaScript

后端 未结 3 809
情歌与酒
情歌与酒 2020-12-05 13:14

is there any possibility to access and retrieve data from MongoDB directly over JavaScript form browser without backend processing?

3条回答
  •  感动是毒
    2020-12-05 13:29

    MongoDB natively does not have a fully usable REST interface. You will need either Python based Sleepy Mongoose or Node.js based MongoDB Rest

    Please see http://www.mongodb.org/display/DOCS/Http+Interface for more information.

    Mongo's inbuilt REST interface is very basic & read only.

提交回复
热议问题