答案 0 :(得分:0)
您可以从模型中的数据源访问mongo连接。像这样:
Model.getDatasource().connector.connect((err, db) => {
const collection = db.getCollection("Model");
collection.save({
"_id": "echoFunction",
"value": new Model.getDatasource().Code("function(x) { return x; }")
});
});