第一次尝试使用Pusher,并且..不确定它是否工作。
当页面加载时,我放在js
代码中的console.log
语句将触发,显示Pusher
对象将经历以下状态:Initialized > Connecting > Connected
但是,我已经将一个简单 AJAX 调用绑定到connected
事件,希望只发送然后接收Pusher.connection.socked_id
。
同样,我的所有显示都显示在控制台中,使应用看起来工作正常,包括success
回调中的Successful Ajax Call
消息,但我没有收到任何数据。data
对象显示为undefined
,如果我在HandleEvent
服务器端方法中设置断点,它永远不会触发。
你知道我做错了什么吗
C语言#
[HttpPost]
public void HandleEvent(string socket_id)
{
var pusher = new Pusher(PusherConfig.APP_ID(), PusherConfig.KEY(), PusherConfig.SECRET());
var result = pusher.Trigger("test_channel", "my_event", new { message = socket_id });
}
推送器应用程序
$(document).ready(function () {
Pusher.log = function(message) {
if (window.console && window.console.log) {
console.log(message);
}
};
var pusher = new Pusher(key);
var socketId = null;
var channel = pusher.subscribe('test_channel');
channel.bind('my_event', function (data) {
alert(data.message);
});
pusher.connection.bind('initialized', function (data) {
console.log('initialized');
});
pusher.connection.bind('connecting', function (data) {
console.log('connecting');
});
pusher.connection.bind('connected', function (data) {
console.log('connected');
socketId = pusher.connection.socket_id;
$.ajax({
url: 'api/Values/HandleEvent',
type: "POST",
data: { socket_id: socketId },
success: function(data) {
console.log("Succesful Ajax Call");
console.log("Data: " + data);
},
error: function(error) {
console.log("Bad Ajax Call");
}
});
});
pusher.connection.bind('unavailable', function (data) {
console.log('unavailable');
});
pusher.connection.bind('failed', function (data) {
console.log('failed');
});
pusher.connection.bind('disconnected', function (data) {
console.log('disconnected');
});
console.log("State: " + pusher.connection.state);
});
1条答案
按热度按时间2admgd591#
由于响应在json中返回,请尝试以下命令。
查看完整回复
仅查看留言