1
這是我的訂閱代碼,我想要獲取channelid,所以我在代碼中使用了this.channel,但我沒有定義。有什麼辦法,我能得到的channelID如何在pubnub訂閱/發佈函數中獲取channelid?
pubnub.subscribe({
channel: changing dynamically,
presence: function (m) {
console.log(m)
},
message: function (m) {
console.log(m);
console.log("Channel ==" + this.channel)
},
error: function (error) {
// Handle error here
console.log(JSON.stringify(error));
}
})
結果: 通道==未定義