标签:mil more 报错 自动 microsoft sof ann 调整 解决方法
在用 Laravel Backpack 写一个定制化的 CRUD 页面。例如,一个指定店铺所拥有的商品的 CRUD 页面。
起初路由我是这样写的
CRUD::resource(‘products-of-store/{store_id}‘, ‘ProductCrudController‘);
报错
Route pattern "/products-of-store/{store_id}/{{store_id}}" cannot reference variable name "store_id" more than once.
解决方法,Route 调整为
CRUD::resource(‘store/{store_id}/products‘, ‘ProductCrudController‘);
即,Route 的最后设置为一个非变量。
我觉得是 resource 会自动将 route 最后的那个单词作为变量,所以出现了报错日志中的变量名重复的问题。
Route pattern cannot reference variable name more than once
标签:mil more 报错 自动 microsoft sof ann 调整 解决方法
原文地址:https://www.cnblogs.com/sgm4231/p/10191187.html