美文网首页
一个模块的各类请求

一个模块的各类请求

作者: NOTEBOOK2 | 来源:发表于2017-12-18 16:10 被阅读0次

    一个模块下主要是这几个方法:

    constructor(http) {

    this.http = http;

    this.list = this.list.bind(this);  分页请求get

    this.all = this.all.bind(this);  请求全部get

    this.delete = this.delete.bind(this); 删除delete

    this.update = this.update.bind(this); 更新put

    this.create = this.create.bind(this); 新建post

    }

    新增了approve, cancel两个请求

    重点是create, arg参数部分和response响应部分

    all一次请求全部,list分页请求

    分页的测试

    一次请求的测试

    删除一项

    更新一项使用put方法需要带payload

    更新部分需要在API types文件里面修改TS配置

    相关文章

      网友评论

          本文标题:一个模块的各类请求

          本文链接:https://www.haomeiwen.com/subject/yfedwxtx.html