我是Sails的新手,目前正在Sails项目和MySQL之间进行连接。我发现我的帆扬起后,MySQL Workbench上的“客户端连接”没有显示任何连接,并且我也无法从MySQL获取任何数据。
[config / datastores.js]
module.exports.datastores = {
default: {
adapter: require('sails-mysql'),
url: 'mysql://root:pw@localhost:3306/database',
}
};
[api / model]
module.exports = {
attributes: {
'username': {
type: 'string',
},
'email': {
type: 'string',
},
'password': {
type: 'string',
},
'create_time': {
type: 'string',
},
},
};
[api / devController]
module.exports = {
index: function(req,res){
model.find().exec(function(err,info){
return res.json(info);
});
},
};
帆扬起后,json返回空。是丢失还是错误?