SocketException:操作系统错误:连接被拒绝,errno = 111,地址= 10.0.2.2,端口= 42676

时间:2019-01-23 11:44:18

标签: mongodb dart flutter

我只是想将我的flutter应用程序与mongodb连接起来, 下面是我的代码:

database() async {

    mongo.Db db = new mongo.Db("mongodb://10.0.2.2:27017/yantra");
     mongo.DbCollection collection = db.collection('zip');
      await db.open();
      print(collection);
     // var coll = db.collection('yantra');
     // await coll.insertAll([
   // {'username': 'sumesh', 'password': '123'}

  //]
  //);
 }

0 个答案:

没有答案