noty js 样式在 laravel 6 中不起作用

Posted

技术标签:

【中文标题】noty js 样式在 laravel 6 中不起作用【英文标题】:noty js style is not working in laravel 6 【发布时间】:2020-05-09 10:07:20 【问题描述】:

我正在使用 noty 库进行样式通知:enter link description here

它在没有样式的默认主题下工作 我把源码css和js放在app.blade中:

 <link rel="stylesheet" type="text/css" href="asset('dashboard_files/plugins/noty/noty.css')">
    <script src="asset('dashboard_files/plugins/noty/noty.min.js')"></script>

我将以下代码放入_sessions.blade.php

<script>



@if(session('success'))


  new Noty(
    theme: 'relax',
    type: 'success',
    layout:'topRight',
    text: "session('success')",
    timeout:2000,
    killer: true
    ).show();

    </script>


    @endif

【问题讨论】:

【参考方案1】:

添加此链接 .. 如果您不使用 npm 安装插件,则必须使用 css 文件和 js 文件添加您想要的主题(mint 等)的引用:)

【讨论】:

以上是关于noty js 样式在 laravel 6 中不起作用的主要内容,如果未能解决你的问题,请参考以下文章

css 样式中的背景图像在带有尾风的 laravel 中不起作用

Laravel 6 @yield() 在 include() 方法中不起作用

barryvdh/laravel-cors 配置在 Laravel 5.6 中不起作用;忽略'allowedMethods'

带有“LIKE”语句的雄辩查询在 Laravel 6 中不起作用

文本区域验证最大规则在 laravel 6 中不起作用

Jquery 确认删除使用 noty js 不起作用