MongoDB
 sql >> Cơ Sở Dữ Liệu >  >> NoSQL >> MongoDB

Kết nối với MongoDB Atlas Cluster db bằng ứng dụng gốc phản ứng

Tôi nghĩ bạn nên viết lại mã theo định dạng được mongodb đề xuất tại đây:

https://mongodb.github.io/node-mongodb -native / api-posts / nodekoarticle1.html

Về cơ bản:

    const MongoClient = require('mongodb').MongoClient;

    //make sure to check connection string is correct here, since this depends on the whether you are running standalone, replica, sharded cluster 

    const uri = "mongodb+srv://<userName>:<password>@testcluster1-dbdq3.mongodb.net/test?retryWrites=true&w=majority";


    MongoClient.connect(uri, { useNewUrlParser: true }, function(err, client) {

       if (err) {

             //error

       } else {

             var collection = client.db('test').collection('devices');

             //client.close() should be called after you are done performing actions such as collection.update, etc.

       }
    });


  1. Redis
  2.   
  3. MongoDB
  4.   
  5. Memcached
  6.   
  7. HBase
  8.   
  9. CouchDB
  1. Ví dụ về MongoDB cho Yesod / Persently

  2. 'autoIndexID' không phải là một tùy chọn thu thập hợp lệ - mongoDB

  3. Spring Data mongo để chèn giá trị null vào DB

  4. Làm thế nào để chuyển đổi một chuỗi với các ký tự trong int cho toàn bộ bộ sưu tập?

  5. mongodb - mở cuộn các tài liệu con lồng nhau