且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

使用MongoDB的客户端jQuery应用程序

更新时间:2023-12-04 13:54:06

您需要一个驱动程序才能连接到MongoDB服务器。司机列表在这里:
http://www.mongodb.org/display/DOCS/Drivers

You need a driver to connect to a MongoDB server. The list of drivers is here: http://www.mongodb.org/display/DOCS/Drivers

有一个JS驱动程序,但仅适用于服务器端JS - 特别是node.js

There is a JS driver, but only for server side JS - specifically node.js

Bottomline,你不能直接从浏览器连接。你需要一个服务器端组件。

Bottomline, you can't connect directly from a browser. You need a server side component.