插件中的10月CMS路由文件

时间:2017-04-29 05:56:43

标签: php laravel routing octobercms octobercms-plugins

我有一个

  

routes.php文件

我的插件目录中的

文件有很多路由规则,例如其中的一部分是:

# global routes for buy and sell
  Route::post('loadgroups/','Imis\Accounting\Controllers\SaleFactors@loadGroups');
  Route::post('loadproducts/','Imis\Accounting\Controllers\SaleFactors@loadProducts');
  Route::post('mobile/','Imis\Accounting\Controllers\SaleFactors@mobile');
  Route::post('cashcredit/','Imis\Accounting\Controllers\SaleFactors@calcCashCredit');

我的问题是所有路由都正常工作,但最后一个路由抛出

  

404未找到

对这个问题有什么想法以及如何解决它!? 谢谢。

1 个答案:

答案 0 :(得分:1)

如果你肯定定义了Controller方法,那么我唯一能想到的就是你可能正在其他地方发帖。一个错字可能是!?您可能希望查看您的表单(或者您正在发出POST请求)以确保您正在找到正确的路线。仔细观察StackTrace可能也会有所帮助。

要添加度量,您可以清除缓存:php artisan cache:clear

希望您能找到解决办法。祝你好运!