Skip to content

ZadaWu/sails-test

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

如何启动

  1. cd sails-test && npm install
  2. sails lift 或者 nodeman app.js

参考文档 1-2视频 3-4视频

sails

  1. 入门地址
npm install sails -g
sails new test-project
cd test-project
sails lift(会有提示,1. FOR DEV:alter)
  1. 新建一个restful的API
sails genenrate api hello

至此,你目前可以在磁盘缓存数据的基础上调用hello这个api接口 新增用户=>PUSH http://localhost:1337/hello/Create?userId=13&userName=san 修改用户=>PATCH http://localhost:1337/hello/1?userId=11&userName=wu 删除用户=>DEL http://localhost:1337/hello?id=1 (id为创建后返回的id) 查找所有用户=>GET http://localhost:1337/hello 通过主键查找一个用户=>GET http://localhost:1337/hello/1

  1. 使用mongoDB存储
  • 首先你需要安装一个mongoDB,这里我自己创建了一个数据库 hello

  • 安装 sails-mysql : npm install -g sails-mysql

  • 修改models/Hello.js 配置你的表以及字段的属性

     ```
     
     module.exports = {
     
       tableName: 'hello',
       primaryKey: 'id',
     
       attributes: {
         userId: {
           type: 'string',
           required: true,
           unique: true,
           columnName: 'user_id',
         },
         userName: {
           type: 'string',
           columnName: 'user_name',
           defaultsTo: '',
         },
       },
     
       async beforeCreate(data, next) {
         return await next()
       },
     
       async afterCreate(data, next) {
         return await next()
       },
     
     };
     
     
     ```
    
    • config中的datastores.js里面配置mysql的用户名/密码/IP/端口号/数据库

      module.exports.datastores = {
        default: {
          adapter: 'sails-mysql',
          url: 'mysql://root:password@localhost:3306/hello',
        },
      };
      
  1. 至此,你可以重启项目,调用你的接口,数据库里面就能看到了

ps: 你可以全局安装nodeman, nodeman app.js 能帮你监控app.js是否改动,改动则更新配置

About

use sails to create restful api .

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published