axios-Ajax发送请求

  

使用axios发送get方式的请求

    axios.get('./data1.json', {
        params: {
            "username": "admin",
            "password": 123
        }
    })
    .then(response => {
        // 这里接收数据 (接收到的直接就是一个对象)
        console.log(response.data)
    })
    .catch(err => {
        console.log('错误信息:', err);
    })

使用axios发送post方式的请求

    axios.post('./data.json', {
        "username": "guest",
        "password": 321
    })
    .then(response => {
        // 这里接收数据
        console.log(response.data);
    })
    .catch(err => {
        console.log('错误信息:', err)
    })

你可能感兴趣的:(axios-Ajax发送请求)