我最近建立了我的Laravel应用程序,并配置Echo来接收推送通知。不幸的是,回调函数没有被触发,即使接收到了事件以及它的数据。您可以在下面找到我的代码:
web.php
Route::get('/pusher', function() {
$location = ['lang' => 'langTets', 'lat' => 'latTest'];
event(new Freight\Events\LocationUpdated($location));
return "Event has been sent!";
});bootstrap.js
import Echo from 'laravel-echo'
window.Pusher = require('pusher-js');
Pusher.logToConsole = true;
window.Echo = new Echo({
broadcaster: 'pusher',
key: 'iscorrect',
cluster: 'eu',
encrypted: true
});
window.Echo.channel('location-updates')
.listen('.LocationUpdated', function(location) {
console.log("Test");
});我的app.blade
<!DOCTYPE html>
<html lang="{{ app()->getLocale() }}">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- CSRF Token -->
<meta name="csrf-token" content="{{ csrf_token() }}">
<title>Freight</title>
<!-- Styles -->
<link href="{{ asset('css/app.css') }}" rel="stylesheet">
<!-- JS -->
<script src="{{ asset('js/app.js') }}"></script>
</head>
<body>
...当我打开页面时,这会出现在我的控制台中:
app.js:32652 Pusher : State changed : initialized -> connecting
app.js:32652 Pusher : Connecting : {"transport":"ws","url":"censoredstuff"}
app.js:32652 Pusher : State changed : connecting -> connected with new socket ID morecensoredstuff
app.js:32652 Pusher : Event sent : {"event":"pusher:subscribe","data":{"channel":"location-updates"}}
app.js:32652 Pusher : Event recd : {"event":"pusher_internal:subscription_succeeded","data":{},"channel":"location-updates"}
app.js:32652 Pusher : No callbacks on location-updates for pusher:subscription_succeeded现在,在一个触发的事件中,这是控制台中显示的:
Pusher : Event recd : {"event":"Freight\\Events\\LocationUpdated","data":{"location":{"lang":"langTets","lat":"latTest"}},"channel":"location-updates"}
app.js:32652 Pusher : No callbacks on location-updates for Freight\Events\LocationUpdated你有什么线索吗,为什么console.log不能正常工作?如果需要更多的信息,请随时询问。
发布于 2017-09-10 19:41:15
我仍然没有找出问题的根源。然而,这很好地解决了这个问题:
broadcastAs(){ return 'myneweventname'; }
https://stackoverflow.com/questions/46132582
复制相似问题