laravel API put和patch方法不接受来自 Postman 表单数据的请求

pw9qyyiw  于 2023-05-08  发布在  Postman
关注(0)|答案(1)|浏览(165)

我在laravel 8中使用apireource创建了一个更新API。我正在使用put和patch方法从 Postman 那里看到请求,但它返回空数组。是否有任何方法通过使用,我可以创建更新API使用表单数据,因为我有图像在我的api拜特x-www-form-urlencoded不给予选项来添加文件.
enter image description here

xzlaal3s

xzlaal3s1#

检查Postman上的标题,确保:

'Content-Type': 'multipart/form-data'

相关问题