React Native - can't import mongoose on the front end(but it works from the backend)

后端 未结 2 778
抹茶落季
抹茶落季 2021-01-29 05:21

I cant import mongoose on the frontend but it worked on the backend.

I have a separate directory for the backend. I have some code to add a couple users to my database.

2条回答
  •  -上瘾入骨i
    2021-01-29 06:15

    Mongoose's browser library doesn't support mongoose.connect(). It only supports schemas and document validation, it can't actually connect to MongoDB or save documents currently.

提交回复
热议问题