LaravelEchoListener不在前端工作
我创建了一个事件:
<?php
namespace AppEvents;
use IlluminateBroadcastingChannel;
use IlluminateBroadcastingInteractsWithSockets;
use IlluminateBroadcastingPresenceChannel;
use IlluminateBroadcastingPrivateChannel;
use IlluminateContractsBroadcastingShouldBroadcast;
use IlluminateFoundationEventsDispatchable;
use IlluminateQueueSerializesModels;
class QueueStatus implements ShouldBroadcast
{
use Dispatchable, InteractsWithSockets, SerializesModels;
public $queue;
public function __construct()
{
$queue = 'test2';
}
public function broadcastOn()
{
return new Channel('thechannel');
}
public function broadcastWith()
{
return ['test1'];
}
public function broadcastAs() {
return 'examplee';
}
}
这是 bootstrap.js:
import Echo from "laravel-echo"
window.io = require('socket.io-client');
window.Echo = new Echo({
broadcaster: 'socket.io',
host: window.location.hostname + ':6001'
});
window.Echo.channel('thechannel')
.listen('.examplee', (e) => {
console.log(e);
});
和路线:
Route::get('/', function () {
event(new AppEventsQueueStatus());
return view('welcome');
});
laravel-echo-server.json :
{
"authHost": "http://localhost",
"authEndpoint": "/broadcasting/auth",
"clients": [
{
"appId": "2583d37858d083b7",
"key": "248536aa1290916b4cd80279fe8fa4cf"
}
],
"database": "redis",
"databaseConfig": {
"redis": {},
"sqlite": {
"databasePath": "/database/laravel-echo-server.sqlite"
}
},
"devMode": true,
"host": null,
"port": "6001",
"protocol": "http",
"socketio": {},
"secureOptions": 67108864,
"sslCertPath": "",
"sslKeyPath": "",
"sslCertChainPath": "",
"sslPassphrase": "",
"subscribers": {
"http": true,
"redis": true
},
"apiOriginAllow": {
"allowCors": true,
"allowOrigin": "http://localhost:8000",
"allowMethods": "GET",
"allowHeaders": "Origin, Content-Type, X-Auth-Token, X-Requested-With, Accept, Authorization, X-CSRF-TOKEN, X-Socket-Id"
}
}
ENV文件:
APP_NAME=Laravel
APP_ENV=local
APP_KEY=base64:tDyjOGMQ5AhlIdieUGZnhTi3IcJ7+vx4m8H6rDi9idI=
APP_DEBUG=true
APP_URL=http://localhost
LOG_CHANNEL=stack
LOG_LEVEL=debug
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=assets_daily_info
DB_USERNAME=root
DB_PASSWORD=
BROADCAST_DRIVER=redis
CACHE_DRIVER=file
QUEUE_CONNECTION=sync
SESSION_DRIVER=file
SESSION_LIFETIME=120
REDIS_HOST=127.0.0.1
REDIS_PASSWORD=null
REDIS_PORT=6379
当我将广播驱动程序设置为日志时:
[2020-11-26 16:19:52] local.INFO: Broadcasting [QueueStatuss] on channels [thechannel] with payload:
{
"0": "test1",
"socket": null
}
当我通过 CLI 将广播驱动程序设置为 redis 并监视 redis 时:
1606408782.818033 [0 127.0.0.1:11665] "EVAL" "for i = 2, #ARGV don redis.call('publish', ARGV[i], ARGV[1])nend" "0" "{"event":"examplee","data":{"0":"test1","socket":null},"socket":null}" "thechannel"
1606408782.818162 [0 lua] "publish" "thechannel" "{"event":"examplee","data":{"0":"test1","socket":null},"socket":null}"
看起来一切正常,但前端的浏览器控制台没有显示任何日志。
有什么问题?为什么我不能让听众在前端工作?
我尝试更改广播,并在前端的名称前加一个点。
但仍然没有运气。
回答
然而,这太奇怪了,我通过将 socket.io-client 从 3.0.3 降级到 2.3.0 来修复它