MethodNotAllowedHttpException (lumen) while making request with axios(使用 axios 发出请求时的 MethodNotAllowedHttpException (lumen))
问题描述
创建了一个在 lumen 中插入 todo 的路由,它使用 postman 可以完美地工作,但是在我用 axios 发送的反应应用程序请求中,它收到错误
Created a route for inserting todo in lumen , its working perfectly using postman but in my react application request sending with axios , it getting error
this.apiUrl = 'http://lumenback.dev/createTodo';
axios.post(this.apiUrl, {
todo: this.state.todo,
todo_date: this.props.curDate
})
.then(function (response) {
console.log(response);
}).catch(function (error) {
console.log(error);
});
提前致谢...
推荐答案
我猜你的应用程序不接受跨域请求.
Your application is not accepting the Cross domain requests I guess.
这是一个答案 Lumen API CORS Ajax 405不允许的方法我写信来设置 Cors 并使其与 React 和 Lumen 5.5 一起使用.
Here is an answer Lumen API CORS Ajax 405 Method Not Allowed I wrote to setup Cors and make it working with React and Lumen 5.5.
看看这是否有帮助.
我无法评论所以在这里写这个解决方案.
I cannot comment so writing this solution here.
这篇关于使用 axios 发出请求时的 MethodNotAllowedHttpException (lumen)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用 axios 发出请求时的 MethodNotAllowedHttpException (lumen)
- 覆盖 Magento 社区模块控制器的问题 2022-01-01
- PHP foreach() 与数组中的数组? 2022-01-01
- Laravel 5:Model.php 中的 MassAssignmentException 2021-01-01
- PHP - if 语句中的倒序 2021-01-01
- 如何在 Symfony2 中正确使用 webSockets 2021-01-01
- 如何从数据库中获取数据以在 laravel 中查看页面? 2022-01-01
- openssl_digest vs hash vs hash_hmac?盐与盐的区别HMAC? 2022-01-01
- 如何使用 Google API 在团队云端硬盘中创建文件夹? 2022-01-01
- 使用 GD 和 libjpeg 支持编译 PHP 2022-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01