基于MySql和Sails.js的RESTful风格的api实现

时间:2024-07-22 16:36:50

Sails.js是类似于express的node后台框架,她面向数据库的特性使得面向数据库的服务器的搭建变得特别简单快捷。

现在网上关于Sails的教程大多是基于V0.12版本的,但是现在Sails的最新版本已经是V1.0,对照着官方文档研究了一下,总结了一下基于MySql和Sails的最简单实现。

Step1:

1.安装Sails,新建一个Sails App,安装用于Sails的MySql组件

 npm install sails -g
sails new myApp
npm install sails-mysql --save

2.创建测试数据表

 CREATE TABLE `test` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`username` varchar(255) DEFAULT NULL,
`password` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

Step2:

1.修改config/datastore为

 // config/datastores.js
module.exports.datastores = {
default: {
adapter: require('sails-mysql'),
url: 'user:password@host:port/database',
}
};

2.修改config/models为

1 // config/models.js
2 moudle.exports.models = {
migrate: 'safe',
dataEncryptionKeys: {
default: 'k+07rP56MgaS5L4PIbpGnPltb+aO0O0PD8Fh8Upqzvc='
},
cascadeOnDestroy: true,
primaryKey: 'id'
};

Step3:

新建api

 sails generate api test

Step4:

将数据表字段填入api/models/Test

 // api/models/Test.js
module.exports = {
attributes: {
id: { type: 'number', required: true,autoIncrement: true },
username: { type: 'string', required: true },
password: { type: 'string', required: true },
},
};

启动app,大功告成。

转载请注明出处:https://www.cnblogs.com/sonoda-umi/p/9260709.html