美文网首页
2020-04-22post请求?xx=xx&xx=xx&xx=

2020-04-22post请求?xx=xx&xx=xx&xx=

作者: ClarkM | 来源:发表于2020-04-22 19:04 被阅读0次

    new URLSearchParams() 内置对象获取地

    New URLSearchParams.png
    址栏的参数 通过键的方式拿到值
    let params = new URLSearchParams()
    for (var i = 0; i < this.multipleSelection.length; i++) {
    params.append('idList', this.multipleSelection[i].id)
    }
    fetch({
    method: 'post',
    url: /sbznjs/api/report/deleteBatch?${params},
    }).then(res => {

    相关文章

      网友评论

          本文标题:2020-04-22post请求?xx=xx&xx=xx&xx=

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