vue axios get请求带参数username和password
时间: 2023-07-15 09:14:49 浏览: 110
vue+axios全局添加请求头和参数操作
5星 · 资源好评率100%
可以使用axios的get方法来发送带参数的请求,示例代码如下:
```javascript
import axios from 'axios'
axios.get('/api/login', {
params: {
username: 'your_username',
password: 'your_password'
}
})
.then(response => {
console.log(response.data)
})
.catch(error => {
console.log(error)
})
```
这里使用了axios的get方法,并且通过params参数传递了需要带的参数。在请求的URL中,会自动将参数拼接在URL后面,形如:`/api/login?username=your_username&password=your_password`。在后端服务器中,可以通过解析URL中的参数来获取到用户名和密码。
阅读全文