代码之家  ›  专栏  ›  技术社区  ›  wen tian

Axios无法提交Javascript数组[duplicate]

  •  0
  • wen tian  · 技术社区  · 6 年前

    根据此请求:

    localhost/goods?ids[]=1&ids[]=2 
    

    我的Vue文件:

    var array = [1, 2];
    let json = JSON.stringify(array);
    console.log(json);
    axios.get('http://localhost/goods', json).then(function(res) {
                if (res.code == 200) {
                    console.log("ok");
                }
            }
    

    localhost/goods?ids[]=1&ids[]=2 . 如何实现这个URL请求方法?

    1 回复  |  直到 6 年前
        1
  •  0
  •   Yogesh Gupta    6 年前

    你用错了。

    要获取的第二个参数应该是JS object having params

    从文件中-

    axios.get('/user', {
      params: {
        ID: 12345
      }
     }).then(function (response) {
       console.log(response);})