<legend id='cXodt'><style id='cXodt'><dir id='cXodt'><q id='cXodt'></q></dir></style></legend>

    • <bdo id='cXodt'></bdo><ul id='cXodt'></ul>
    <i id='cXodt'><tr id='cXodt'><dt id='cXodt'><q id='cXodt'><span id='cXodt'><b id='cXodt'><form id='cXodt'><ins id='cXodt'></ins><ul id='cXodt'></ul><sub id='cXodt'></sub></form><legend id='cXodt'></legend><bdo id='cXodt'><pre id='cXodt'><center id='cXodt'></center></pre></bdo></b><th id='cXodt'></th></span></q></dt></tr></i><div id='cXodt'><tfoot id='cXodt'></tfoot><dl id='cXodt'><fieldset id='cXodt'></fieldset></dl></div>

      <small id='cXodt'></small><noframes id='cXodt'>

        <tfoot id='cXodt'></tfoot>

        Laravel 5路线未定义,而它是?

        Laravel 5 route not defined, while it is?(Laravel 5路线未定义,而它是?)

        <tfoot id='ctyiD'></tfoot>

                <tbody id='ctyiD'></tbody>

              <small id='ctyiD'></small><noframes id='ctyiD'>

            1. <i id='ctyiD'><tr id='ctyiD'><dt id='ctyiD'><q id='ctyiD'><span id='ctyiD'><b id='ctyiD'><form id='ctyiD'><ins id='ctyiD'></ins><ul id='ctyiD'></ul><sub id='ctyiD'></sub></form><legend id='ctyiD'></legend><bdo id='ctyiD'><pre id='ctyiD'><center id='ctyiD'></center></pre></bdo></b><th id='ctyiD'></th></span></q></dt></tr></i><div id='ctyiD'><tfoot id='ctyiD'></tfoot><dl id='ctyiD'><fieldset id='ctyiD'></fieldset></dl></div>
              <legend id='ctyiD'><style id='ctyiD'><dir id='ctyiD'><q id='ctyiD'></q></dir></style></legend>

                • <bdo id='ctyiD'></bdo><ul id='ctyiD'></ul>

                  本文介绍了Laravel 5路线未定义,而它是?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我对这应该如何工作感到有些困惑.但我收到 Route [/preferences/1] not defined 错误.

                  I'm a little confused on how this is supposed to work. But I'm getting an Route [/preferences/1] not defined error.

                  在我的 routes.php 中我有:

                  In my routes.php I have:

                  Route::patch('/preferences/{id}', 'UserController@update');

                  在视图文件(account/preferences.blade.php)中我有:

                  And in the view file (account/preferences.blade.php) I have:

                  <代码>{!!Form::model(Auth::user(), ['method' => 'PATCH', 'route' => '/preferences/' . Auth::user()->id]) !!}

                  我收到一条错误消息,告诉我路线不存在.我想我误解了关于这个主题的文档,但我认为我已经为带有给定参数的 PATCH 请求定义了一个路由,并在视图中正确设置了它.

                  I'm getting an error telling me the route doesn't exist. I think I'm misunderstanding the docs on this topic but in my opinion I've defined a route for PATCH requests with a given parameter, and set this in the view correctly.

                  我在这里俯瞰什么?

                  推荐答案

                  route() 方法,当你做 ['route' =>'someroute'] 在表单打开时,需要所谓的命名路由.你给一个路线起这样的名字:

                  The route() method, which is called when you do ['route' => 'someroute'] in a form opening, wants what's called a named route. You give a route a name like this:

                  Route::patch('/preferences/{id}',[
                      'as' => 'user.preferences.update',
                      'uses' => 'UserController@update'
                  ]);
                  

                  也就是说,您将路由的第二个参数放入一个数组中,您可以在其中指定路由名称(as),以及当路由被命中时要执行的操作(<代码>使用).

                  That is, you make the second argument of the route into an array, where you specify both the route name (the as), and also what to do when the route is hit (the uses).

                  然后,当你打开表单时,你调用路由:

                  Then, when you open the form, you call the route:

                  {!! Form::model(Auth::user(), [
                      'method' => 'PATCH',
                      'route' => ['user.preferences.update', Auth::user()->id]
                  ]) !!}
                  

                  现在,对于没有参数的路由,你可以这样做 'route' =>'routename',但是由于你有一个参数,你可以创建一个数组并按顺序提供参数.

                  Now, for a route without parameters, you could just do 'route' => 'routename', but since you have a parameter, you make an array instead and supply the parameters in order.

                  综上所述,由于您似乎正在更新当前用户的首选项,我建议您让处理控制器检查当前登录用户的 id,并以此为基础进行更新 - 无需发送在 url 和路由中的 id 中,除非您的用户也需要更新其他用户的首选项.:)

                  All that said, since you appear to be updating the current user's preferences, I would advise you to let the handling controller check the id of the currently logged-in user, and base the updating on that - there's no need to send in the id in the url and the route unless your users should need to update the preferences of other users as well. :)

                  这篇关于Laravel 5路线未定义,而它是?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  DeepL的翻译效果还是很强大的,如果我们要用php实现DeepL翻译调用,该怎么办呢?以下是代码示例,希望能够帮到需要的朋友。 在这里需要注意,这个DeepL的账户和api申请比较难,不支持中国大陆申请,需要拥有香港或者海外信用卡才行,没账号的话,目前某宝可以
                  PHP通过phpspreadsheet导入Excel日期,导入系统后,全部变为了4开头的几位数字,这是为什么呢?原因很简单,将Excel的时间设置问文本,我们就能看到该日期本来的数值,上图对应的数值为: 要怎么解决呢?进行数据转换就行,这里可以封装方法,或者用第三方的
                  mediatemple - can#39;t send email using codeigniter(mediatemple - 无法使用 codeigniter 发送电子邮件)
                  Laravel Gmail Configuration Error(Laravel Gmail 配置错误)
                  Problem with using PHPMailer for SMTP(将 PHPMailer 用于 SMTP 的问题)
                  Issue on how to setup SMTP using PHPMailer in GoDaddy server(关于如何在 GoDaddy 服务器中使用 PHPMailer 设置 SMTP 的问题)

                    <legend id='1yu6j'><style id='1yu6j'><dir id='1yu6j'><q id='1yu6j'></q></dir></style></legend>
                      <tbody id='1yu6j'></tbody>
                    <tfoot id='1yu6j'></tfoot>
                  1. <small id='1yu6j'></small><noframes id='1yu6j'>

                    <i id='1yu6j'><tr id='1yu6j'><dt id='1yu6j'><q id='1yu6j'><span id='1yu6j'><b id='1yu6j'><form id='1yu6j'><ins id='1yu6j'></ins><ul id='1yu6j'></ul><sub id='1yu6j'></sub></form><legend id='1yu6j'></legend><bdo id='1yu6j'><pre id='1yu6j'><center id='1yu6j'></center></pre></bdo></b><th id='1yu6j'></th></span></q></dt></tr></i><div id='1yu6j'><tfoot id='1yu6j'></tfoot><dl id='1yu6j'><fieldset id='1yu6j'></fieldset></dl></div>
                        • <bdo id='1yu6j'></bdo><ul id='1yu6j'></ul>