MethodNotAllowedHttpException (lumen) while making request with 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); }); thanks in advance... 回答1: Your application is not accepting the Cross domain requests I guess. Here is an