我刚刚在sailsjs中创建了一个定制服务,并尝试访问该服务中的数据库适配器(sails.config.datastores),但我无法做到这一点。我尝试使用sails.getdatastore()方法,但得到sails not defined时出错。这是我的适配器连接。
url: 'mysql://root:@localhost:3306/users',
我的定制服务代码是
var options_default = {
host : 'localhost',
user : 'root',
password : '',
database : 'users',
table : 'userInfo',
};
如何在自定义服务中访问数据库适配器
暂无答案!
目前还没有任何答案,快来回答吧!