sails.js
MySQL configureren met sails.js
Zoeken…
Hoe mysql database verbinding in sails.js te configureren
Om dit te doen, zoekt u eerst de configuratiemap in uw root. Open vervolgens connections.js
bevind zich
// someMysqlServer: {
// adapter: 'sails-mysql',
// host: 'YOUR_MYSQL_SERVER_HOSTNAME_OR_IP_ADDRESS',
// user: 'YOUR_MYSQL_USER', //optional
// password: 'YOUR_MYSQL_PASSWORD', //optional
// database: 'YOUR_MYSQL_DB' //optional
// },
Uncomment deze lijnen.
Geef een geschikte naam voor de connector zoals deze someMysqlServer to mysql_connection of een andere naam als uw wens
mysql_connection: {
adapter: 'sails-mysql',
host: '127.0.0.1', // can user localhost or mysql connection either
user: 'root', // your mysql username
password: 'xxxxxxxxx', // your mysql password
database: 'your database name here' // database name
},
Sla bestand op
Ga naar uw hoofdmap en voer de volgende opdracht uit:
$ npm install sails-mysql --save
Opmerking: door het bovenstaande commando uit te voeren, installeren we mysql stuurprogrammapakket voor sails.js.
Je bent klaar.
Nu kunt u mysql_connection gebruiken als verbindingsnaam in uw modelconfiguratie. Wanneer u uw app opheft met de volgende opdracht:
$ sails lift
uw modelschema wordt automatisch bijgewerkt in de MySQL-database
Modified text is an extract of the original Stack Overflow Documentation
Licentie onder CC BY-SA 3.0
Niet aangesloten bij Stack Overflow