如何在 laravel 5.5 中使用 Noty 包
Posted
技术标签:
【中文标题】如何在 laravel 5.5 中使用 Noty 包【英文标题】:How can use Noty package with laravel 5.5 【发布时间】:2018-03-31 05:56:54 【问题描述】:我在控制器中使用了如下所示的会话
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>
但它没有通知我我做错了什么
【问题讨论】:
【参考方案1】:noty docs 建议你创建一个类似的通知
new Noty(
...
text: 'Some notification text',
...
).show();
【讨论】:
以上是关于如何在 laravel 5.5 中使用 Noty 包的主要内容,如果未能解决你的问题,请参考以下文章
如何在 Laravel 框架中降级? (5.6 至 5.5)