vue.js 发起get请求如何向后台传递两个参数啊.

 let tiaojian = this.$route.params.id
        fetch('searchread/'+tiaojian, null,'get',(data)=>{
            for(var i in data){
                this.reads.push(data[i])
            }
        })
    

这是封装的get请求。我想传递两个、多个参数怎么写啊

我的问题太不清晰了...不好意思了各位,用的是node express框架搭建的后台,app.get('/'...)这样的

阅读 11.9k
5 个回答

两种方式 一种是你的写法,多个参数分别用斜杠隔开(这种后端可能定义的路由是/<int:id1>/<int:id2>类型);另一种是在路由后面加?params1=xxx&?params2=xxx这样的形式(python后端需要根据request.args中获取)。 主要看后端接口是什么形式。

多个参数合并成一个对象

你这个是restful api么? 问问后台他是怎么解析的啊。

以对象的格式将参数合并传递

fetch('searchread/'+tiaojian, {
    method: 'get',
    headers: {
        'credentials': 'include',
        'Content-Type': 'application/json'
    },
    body: JSON.stringify({
        sth: {},
        sth2: [],
        // ...
        // 要上传的数据
    })
}).then(result => result.json()).then((data) => {
    for(var i in data){
        this.reads.push(data[i])
    }
});
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题