我正在尝试将mysql数据库连接到我的sailsjs应用程序
config/connections.js
中的
localMysql:{ //arbitrary name
adapter: 'sails-mysql',
host: '127.0.0.1',
port: 3306,
user: 'root',
password: 'root'
}
并在config/models.js
module.exports.models = {
connection:localMysql
}
但我得到了以下错误
include-all
require(/var/www/node/sails-test/config/models.js)
,但是错误 发生::详细信息:ReferenceError:未定义localMysql
答案 0 :(得分:1)
您需要传递string
:
module.exports.models = {
connection: 'localMysql'
};
http://sailsjs.com/documentation/reference/configuration/sails-config-connections