你好,我是react native的新手,我正在尝试使用pusher-js创建一个实时聊天应用程序,所以我安装了包npm install pusher-js@react-native-community/netinfo,并将以下代码放在我的useEffect中
useEffect(() => {
// Enable pusher logging - don't include this in production
Pusher.logToConsole = true;
var pusher = new Pusher('REDACTED', {
cluster:"eu"});
var channel = pusher.subscribe('my-channel');
channel.bind('my-event', function(data) {
alert(JSON.stringify(data));
});
}, [])
我在控制台Link of the image中得到这个
我使用react-native run-android运行,我使用的是物理设备。提前感谢你能提供的所有帮助。
1条答案
按热度按时间f87krz0w1#
您是否已授予应用访问网络所需的权限?为此,您需要添加
添加到您的android清单。请参阅https://developer.android.com/training/basics/network-ops/connecting