当前位置: 代码迷 >> 综合 >> vuejs 前端 使用axios发送接口请求参数的各种情况
  详细解决方案

vuejs 前端 使用axios发送接口请求参数的各种情况

热度:34   发布时间:2024-02-24 04:04:52.0

使用axios发送get请求,参数写在query里

async getOrgList() {
    let res = await this.$axios.get('/user/b/getOrgList', {
    params: {
    pageNo: 1,pageSize: 99,type: 6}})this.researchList = res.data.retData.list},

使用axios发送post请求,参数写在body里

async AddOrModifyIt() {
    await this.$axios.post('/project/b/project/updateProjectOrg', {
    leader: this.leader,oldOrgId: this.orgPrimaryId,planSubjectNum: this.planSubjectNum,sectionId: this.mainResearchValue.sectionId,userId: this.mainResearchValue.userId,userName: this.mainResearchValue.name})},

使用axios发送post请求,参数写在query里

async deleteRow(index, row) {
    await this.$axios.post('/project/b/project/deleteProjectOrgById',{
    },{
    params: {
    orgPrimaryId: this.orgPrimaryId}})},
  相关解决方案