如何在laravel中广播错误和警告?
How to broadcast errors and warnings in laravel?
我正在使用 Laravel 5.6 和 socket.io
在我的应用程序的管理面板中广播消息。
在我的应用程序中,要求在登录 laravel logs files
之前将所有生成的 errors and warnings
广播给管理员。
我只是想知道如何实现此功能。由于我是 Laravel 框架的新手,还有哪些其他简单方法。
这是我目前所做的:
namespace App\Events;
use Illuminate\Broadcasting\Channel;
use Illuminate\Queue\SerializesModels;
use Illuminate\Broadcasting\PrivateChannel;
use Illuminate\Broadcasting\PresenceChannel;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Broadcasting\InteractsWithSockets;
use Illuminate\Contracts\Broadcasting\ShouldBroadcast;
class ErrorBroadcasting implements ShouldBroadcast
{
use InteractsWithSockets, SerializesModels;
public $errorContent;
public function __construct($errorContent)
{
$this->errorContent = $errorContent;
}
public function broadcastOn()
{
return new PresenceChannel('error-broadcasting-channel');
}
}
这就是我在 blade.
中使用频道的方式
<script>
window.Echo = new Echo({
broadcaster: 'socket.io',
host: window.location.hostname + ':6001',
});
var buyer = Echo.channel(`error-broadcasting-channel`);
buyer.listen("ErrorBroadcasting", e => {
$('#error_container').append("<div class=\"row chat-snippet\">\n" +
" <div class=\"col-lg-12\">\n" +
" <small>Buyer:</small>\n" +
" <p>"+e.errorContent+"</p>\n" +
" </div>\n" +
" </div>");
});
</script>
这就是我修改 app\Exceptions\Handler.php
的方式
public function report(Exception $exception)
{
if (config('app.mail_exception') && $this->shouldReport($exception)) {
$this->sendEmail($exception); // sends an email
}
broadcast(new ErrorBroadcasting($exception))->toOthers();
parent::report($exception);
}
在你的
app/Exceptions/Handler.php
在这个class渲染方法里面你可以
public function report(Exception $exception)
{
broadcast($yourEvent)
parent::report($exception);
}
我正在使用 Laravel 5.6 和 socket.io
在我的应用程序的管理面板中广播消息。
在我的应用程序中,要求在登录 laravel logs files
之前将所有生成的 errors and warnings
广播给管理员。
我只是想知道如何实现此功能。由于我是 Laravel 框架的新手,还有哪些其他简单方法。
这是我目前所做的:
namespace App\Events;
use Illuminate\Broadcasting\Channel;
use Illuminate\Queue\SerializesModels;
use Illuminate\Broadcasting\PrivateChannel;
use Illuminate\Broadcasting\PresenceChannel;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Broadcasting\InteractsWithSockets;
use Illuminate\Contracts\Broadcasting\ShouldBroadcast;
class ErrorBroadcasting implements ShouldBroadcast
{
use InteractsWithSockets, SerializesModels;
public $errorContent;
public function __construct($errorContent)
{
$this->errorContent = $errorContent;
}
public function broadcastOn()
{
return new PresenceChannel('error-broadcasting-channel');
}
}
这就是我在 blade.
中使用频道的方式<script>
window.Echo = new Echo({
broadcaster: 'socket.io',
host: window.location.hostname + ':6001',
});
var buyer = Echo.channel(`error-broadcasting-channel`);
buyer.listen("ErrorBroadcasting", e => {
$('#error_container').append("<div class=\"row chat-snippet\">\n" +
" <div class=\"col-lg-12\">\n" +
" <small>Buyer:</small>\n" +
" <p>"+e.errorContent+"</p>\n" +
" </div>\n" +
" </div>");
});
</script>
这就是我修改 app\Exceptions\Handler.php
的方式public function report(Exception $exception)
{
if (config('app.mail_exception') && $this->shouldReport($exception)) {
$this->sendEmail($exception); // sends an email
}
broadcast(new ErrorBroadcasting($exception))->toOthers();
parent::report($exception);
}
在你的
app/Exceptions/Handler.php
在这个class渲染方法里面你可以
public function report(Exception $exception)
{
broadcast($yourEvent)
parent::report($exception);
}