Unfortunately, this isn't a simple refactor.
1) .createConnection
vs .connect
When using .createConnection
, you access models via the explicit connection you create with this call.
This means that instead of User = mongoose.model(...)
you need User = db.model(...)
.
Examples (one, two, three, four) show this isn't complicated but the change is subtle enough that many people miss it. The docs aren't super clear on this either, which is probably the root cause.
2) your kraken app & .createConnection
If you are building on one of the kraken examples, you'll need to make several changes.
- Change the code around
.createConnection
so you can access the object that is returned. In the current form, you are returning an object with a config
function but you don't return the connection object that .createConnection
generates.
- Update
index.js
if you change the way you configure/create the connection in db.config
. You might be able to avoid this, but I suspect you'll rewrite the entire db.js
around the new call.
- Make sure code/controllers working with models have access to the object your
.createConnection
returned. This means both a way to access the object and changing anyplace you set a variable so it uses the format var xyz = db.model('XYZ')
, etc.
Sorry that there isn't a simple one-line answer...
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…