vue put请求

Laravel 和 Vue.js 使用 Axios 通过 Put 请求上传文件 获取不到 Request 数据,通过 post 传递 form 表单添加隐藏方法 _method='put' 解决

还是用 post 方法,但是在传送的数据里添加一个字段:

data._method = "put"
this.$http.post(url, data)
.then(res => {})

你可能感兴趣的:(vue put请求)