问题标签 [pusher-js]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
php - Laravel Pusher VueJS http://localhost:8000/broadcasting/auth 404(未找到)
我现在正在尝试在我的项目中使用 laravel 广播实现实时通知 ui。我已经通过在公共频道上广播使其工作,但是一旦我切换到私人频道,POST http://localhost:8000/broadcasting/auth 404 (Not Found)
加载页面时就会出现错误。
这是我到目前为止确保检查的内容:
- 我已经取消注释the
App\Providers\BroadcastServiceProvider::class
和Illuminate\Broadcasting\BroadcastServiceProvider::class,
,config\app.php
- 我还在boot() 方法中包含
Broadcast::routes();
并测试了它是否可以工作但仍然没有骰子,Broadcast::routes(['middleware' => 'auth:admin']);
Providers\BroadcastServiceProvider
- 我也尝试过传入
Broadcast::routes();
并且routes\web.php
, - 确保我已包含
<meta name="csrf-token" content="{{ csrf_token() }}">
在主应用程序中。
我正在做的项目使用 Vue JS 实现 SPA,它与后端完全分离,仅通过 api 连接。我希望有人可以让我了解我的方法出了什么问题。谢谢!
vue.js - 如何在 vue js 中使用 pusher 将数据重写为变量?
想问一下在vue js上使用pusher时如何重写vue js变量数据。
在这种情况下,我拥有的推送器将每 5 分钟更改一次数据,但在这里我不会重写之前的变量。
通常我只使用:
但它没有改变,请帮助。
谢谢
reactjs - TypeError:echo.subscribe 不是函数
我在本机反应中使用带有推送器的 laravel echo 服务器。
当我创建一个没有 laravel echo 的新推送器时,它工作正常,我可以收听以下频道:
但是当我使用 laravel echo 并在频道上收听时,我得到了一个 TypeError: echo.subscribe is not a function like:
在 Laravel 文档中,new Echo({client: Pusher})
不包括上面的客户端选项,但如果我删除它,则会显示错误ReferenceError: Can't find variable Pusher
。
谢谢
reactjs - 反应本机自定义主机推送器连接
似乎无法连接到推送器。这几天我一直在工作,似乎无法连接到 pusher。版本 6.0.3
Pusher 消息 Pusher : : ["Connecting",{"transport":"xhr_polling","url":" https://sockjs-4444.pusher.com:443/pusher/app/DOCKOTO_KEY?protocol=7&client=js&version= 6.0.3 "}]
laravel - Laravel5.8 Pusher 事件 500 内部服务器错误
我尝试在我的网站上添加一个聊天扩展,观看了很多视频课程,Laravel 和 Pusher 使用用户。网站正常运行
但是如果我在 return line- 之前添加 line- ,则会给出 500 Internal Server Error 。发送的消息正在保存到数据库但没有返回值...请帮助我
我的 ChatEvent.php
我的 ChatController.php
VueJs 发布和获取代码
路线和渠道
Pusher's AppKey,Secret,ID and Cluster OK, Broadcaster-Driver: pusher Everywhere
laravel - Channel is not defined. Laravel, Push notifications pusher
I'm using pusher for push notifications in my laravel production web with cloud server. It's was working on localhost, then stopped working on localhost too and giving the error in console that channel is not defined.
Header:
Body:
The console prints Channel is is not defined.
angular - 如何在 Pusher 中向频道的所有成员广播消息事件?
我正在尝试使用 Pusher 和 Angular 设计一个聊天应用程序。我已经设法设置频道并发送消息。但是,消息事件会广播给除发送者之外的所有客户端。
如何向包括发送者在内的所有频道成员广播?