我已经使用laravel 5.8创建了简单的Web应用程序。 这是我的项目网址http://localhost/test/public/home
web.php
Route::group(['middleware' => ['auth', 'preventBackHistory']], function() {
Route::get('home', 'HomeController@index')->name('home');
Route::post('generate_table.data', 'HomeController@generate_table')->name('generate_table.data');
});
我将这个ajax称为home.blade
"ajax": {
"url":"{!! route("generate_table.data") !!}",
"type": "POST",
"jsonpCallback": 'jsonCallback',
"dataType": "jsonp"
}
此ajax没有任何问题。它正在加载数据。如果我导航到http://localhost/test/public/generate_table.data?callback=jsonCallback,则显示
黑屏Symfony \组件\ HttpKernel \ Exception \ MethodNotAllowedHttpException
没有消息
如果用户导航http://localhost/test/public/generate_table.data?callback=jsonCallback,如何导航回/ home?
.env
APP_DEBUG=false
谢谢。
答案 0 :(得分:1)
使用GET方法时,您可以重定向用户。
// GET method will be redirected to home.
Route::get('generate_table.data', function () {
return redirect()->to('/');
});
// The POST method will be passed to the controller.
Route::post('generate_table.data', 'HomeController@generate_table')->name('generate_table.data');
答案 1 :(得分:0)
将此添加到您的路线:
Route::get('generate_table.data', 'HomeController@index');