gpt4 book ai didi

javascript - pubnub存储和回放历史功能

转载 作者:行者123 更新时间:2023-11-29 19:14:41 24 4
gpt4 key购买 nike

是否可以在历史功能之前执行发布功能。

PUBNUB_demo.publish({
channel: 'demo_tutorial',
message: {"color":"blue"}
});

PUBNUB_demo.history({
channel : 'demo_tutorial',
count : 100,
callback : function(m){console.log(m)}
});

出于某种原因,历史功能在发布功能之前执行是否可以更改,因此发布功能始终先执行

最佳答案

JavaScript 是异步的,因此在发布函数完成之前调用历史记录。要正确执行此操作,您需要像这样在发布成功回调中调用历史记录:

PUBNUB_demo.publish({
channel: 'demo_tutorial',
message: {"color":"blue"},
success: function(){
PUBNUB_demo.history({
channel : 'demo_tutorial',
count : 100,
callback : function(m){console.log(m)}
});
}
});

关于javascript - pubnub存储和回放历史功能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36252214/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com