這可能爲時已晚,只是爲了未來。 對於創建控制器,模型部分非常容易處理。很多youtube視頻都在線上。
關於連接部分,你將需要編輯connection.js
module.exports.connections = {
localMysqlServer: { ... },
openshiftMysqlServer: {
adapter: 'sails-mysql',
host: process.env.OPENSHIFT_MYSQL_DB_HOST,
user: 'username',
password: 'password',
database: 'dbname'
}
}
而且development.js
module.exports = {
/***************************************************************************
* Set the default database connection for models in the development *
* environment (see config/connections.js and config/models.js) *
***************************************************************************/
models: {
connection: 'openshiftMysqlServer'
}
};
這應該工作!