如何在axios请求中添加查询、过滤参数

How to add query, filter params in axios request

http://localhost:9000/api/res.users?sudo=1&filter=[["id","=",11]]&query={id,name,image_128,phone}

如何使用 axios 将上面的 url 组合起来并发送到服务器。

我尝试了参数,但我想我遗漏了一些东西,因为我得到了

     Promise {
  "_U": 0,
  "_V": 0,
  "_W": null,
  "_X": null,
}

我的代码看起来像这样this was when i tried using apisauce

现在使用 axios 我试过这种方式

const res = axios.get('http://localhost:9000/api/res.users', {
        params:{
            sudo: '1',
            filter: '[["id", "=", 11]]',
            query: "{phone,name}"
        }
    });
    console.log("res", res);

尝试一下它会起作用

axios.get('http://localhost:9000/api/res.users', {
    params:{
        sudo: '1',
        filter: '[["id", "=", 11]]',
        query: "{phone,name}"
    }
}).then(res=>{
   console.log("res", res);
});