试图console.log
从pusher中显示数据。我正在使用laravel 5.8。
app.js
文件有以下代码:
let userId = document.head.querySelector('meta[name="user-id"]').content;
Echo.private('App.User.' + userId)
.notification((notification) => {
console.log(notification.type);
});
错误如下:
未捕获的类型错误:无法读取 null 的属性“内容”
我还在我的刀片中添加了 CFRS 令牌和 Auth:User,ID 如下:
<meta name="csrf-token" content="{{ csrf_token() }}">
<mete name="user-id" content="{{Auth::check() ? Auth::user()->id: ''}}"