Laravel - 使用变量重定向到树枝页面

Posted

技术标签:

【中文标题】Laravel - 使用变量重定向到树枝页面【英文标题】:Laravel - Redirect with variable to twig page 【发布时间】:2017-11-09 20:54:10 【问题描述】:

我制作了一个带有 try/catch 情况的邮件功能。它检查邮件模板是否存在,如果不存在则需要将重定向/返回到带有消息的页面(return redirect('dashboard')->with('status', "Mail doesn't exists");

是否可以使用树枝页面通过变量进行重定向?还是我做错了什么?

这是我的邮件功能(DashboardController.php

 public function MailContact($date_id, $contact_id)

    try
    
        $contact = Contact::find($contact_id);
        $date = Date::find($date_id);
        $mail = Mails::where('datetype_id', $date->datetype_id)->first();
        $html = $mail->html;

        Mail::to($contact->email)->send(new Anniversary($html));

        return redirect('dashboard');
        
    catch(\Exception $ex )
    
        return redirect('dashboard')->with("Mail doesn't exists");
    

这是树枝页面('dashboard.twig')

 <div class="box-body no-padding" style="width: 100%; padding-top:20px;">
  <ul class="telephoneKingList" style=" display: inline-block;
    width: 100%;">
        % for dates in datestodayUser %
           % if dates is not empty %
              <li data-id=" dates.id ">
                  dates.contact.fullname ,  dates.contact.relation.company  <br>
                  dates.description <br>
                 # Place where Error needs to be #
                 <a role="button" id="edit-button" href="/dashboard/mail/ dates.id / dates.contact.id " class="btn btn-primary btn-sm"><i class="fa fa-envelope"></i></a>
              </li>
              <hr>
           % endif %
           % else %
              <li>
                 Geen data beschikbaar.
              </li>
           % endfor %                         
  </ul>

【问题讨论】:

结帐:***.com/questions/19838978/… 【参考方案1】:

你可以的

return redirect('dashboard')->with(['message'=>"Mail doesn't exists"]);

然后在你的树枝上

message会给你留言

【讨论】:

工作,谢谢。 $message 应该是 message tho 哎呀错过了,如果工作也接受相同【参考方案2】:

使用

redirect('dashboard')->withErrors(["Mail doesn't exists"])

并且在您的树枝中,您需要使用

访问错误
 errors.first() 

Laravel 有一个开箱即用的中间件,名为 ShareErrorsFromSession,它与所有视图共享会话错误。

【讨论】:

以上是关于Laravel - 使用变量重定向到树枝页面的主要内容,如果未能解决你的问题,请参考以下文章

如何将客人重定向到登录页面,在laravel 5.2登录后重定向回来[关闭]

Laravel 5.0 - 登录失败时更改重定向

使用ajax重定向到Laravel中的特定页面

如果用户未登录 Laravel,则重定向到登录页面

在 laravel 5.4 自动重定向到 404 页面

成功操作后不会重定向到相同的分页(或页面)。 Laravel