Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在向资源控制器的 index() 操作提交一个表单,但它会扩展 store() 方法。这是我的代码。
http://paste.laravel.com/rru
我正在尝试通过使用 jQuery 提交的选择框动态更改 $perPage 变量以调整分页量。有任何想法吗。
据我所知resource,打开表单时没有可用的密钥。资源控制器上的index方法作为GET请求路由。因此,由于您的表单默认情况下作为POST请求打开,因此它会发布到当前 URI,从而导致请求以您的store方法结束。
resource
index
GET
POST
store
如果您尝试更新分页,那么为什么不将其作为 a 发送GET并使用查询字符串(就像分页器一样)。