Laravel-toastr 通知在实时服务器中的主机之后不起作用
Laravel-toastr notification is not working after host in a live server
我正在使用 laravel-8 并按照 this 在我的项目中使用 toastr 消息。相同的代码上传到实时服务器上。但是 tostr 消息在本地工作的实时服务器上不起作用。如何解决?
在控制台中,显示
This page was loaded over HTTPS, but requested an insecure script 'http://cdn.bootcss.com/toastr.js/latest/js/toastr.min.js'. This request has been blocked; the content must be served over HTTPS.
您可以使用 link 即 https
或者您可以允许混合内容以解决您的问题。在您的 header
.
中添加以下行
<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">
我正在使用 laravel-8 并按照 this 在我的项目中使用 toastr 消息。相同的代码上传到实时服务器上。但是 tostr 消息在本地工作的实时服务器上不起作用。如何解决?
在控制台中,显示
This page was loaded over HTTPS, but requested an insecure script 'http://cdn.bootcss.com/toastr.js/latest/js/toastr.min.js'. This request has been blocked; the content must be served over HTTPS.
您可以使用 link 即 https
或者您可以允许混合内容以解决您的问题。在您的 header
.
<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">