在一个项目中,我使用node-mongodb-native连接到包含一些集合的数据库。
现在还有另一个数据库,其中包含另一个需要的集合。我想从同一个项目中查询此集合,并且代码更改的次数最少。
我知道MongoEngine does this相当漂亮。
在NodeJS中是否有标准的方法,例如:使用node-mongodb-native驱动程序?
答案 0 :(得分:1)
我想这是你连接到mongo DB的方式,同样你可以用一个不同的名字创建一个新的Mongo客户端变量来连接到新的db。
EditTextObj.setOnEditorActionListener(new TextView.OnEditorActionListener() {
@Override
public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
boolean handled = false;
if (actionId == EditorInfo.IME_ACTION_DONE) {
/* Write your logic here that will be executed when user taps next button */
handled = true;
}
return handled;
}
});