0

我在控制器中使用了如下所示的会话

Session::flash('success', 'Profile updataed');

我在下面的文件中导入

use Illuminate\Session\flash;
use Illuminate\Support\Facades\Session;

我已经运行 npm install noty 命令

在我的资产文件夹 bootstrap.js 文件中,我包含

require('noty');

之后我在我的主布局文件中添加了以下脚本代码

<script>
        @if(Session::has('success'))
            noty([
                type: 'success',
                layout: 'top',
                text: '{{ Session::get('success') }}'
                ]);
        @endif
    </script>

但它没有给我通知我做错了什么

4

1 回答 1

0

noty文档建议您创建一个通知,例如

new Noty({
    ...
    text: 'Some notification text',
    ...
}).show();
于 2018-03-03T20:14:12.457 回答