为了账号安全,请及时绑定邮箱和手机立即绑定

使用 Vue 和 AXIOS 从 API 循环构建数组

使用 Vue 和 AXIOS 从 API 循环构建数组

慕丝7291255 2021-08-20 17:32:48
我有一个 NIH API,一次只能调用 50 页。下面的代码适用于 50 个项目的第一页。loadNIH() {      let offset = 0;      axios({        method: "GET",        url:          "https://api.federalreporter.nih.gov/v1/projects/search?query=orgName:Medical University of South Carolina$fy:2016$&offset=" + offset +"&limit=50"      })        .then(res => {          this.NIHData = res.data.items;        })        .catch(function(error) {          console.log(error);        });    },我需要循环所有页面,直到获得所有数据。每次偏移需要增加接收到的页面数(请求 50)9 个页面。我需要它将数据添加到 this.NIHData 的数组中。我有一个工作,所以我需要一些帮助来创建循环。
查看完整描述

1 回答

  • 1 回答
  • 0 关注
  • 259 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信