2

on()应该从路径或键1流式传输数据。但是当我put在我的路径上数据时,我没有看到更新的流。

var myData = Gun('https://gunjs.herokuapp.com/gun')
             .get('example/demo/set');
myData.on();
myData.put({hello:'world'});
4

2 回答 2

2

.on()是一个异步函数,因此您需要将代码更新为如下所示:

var myData = Gun('https://gunjs.herokuapp.com/gun')
             .get('example/demo/set');
myData.on(function(data){
    console.log("update:", data);
});
myData.put({hello:'world'});

希望有帮助!


如果您是编程新手,上述代码中的“匿名函数”(通常称为回调)可能会有些混乱。上面的代码也可以重写为此,它具有完全相同的行为:

var myData = Gun('https://gunjs.herokuapp.com/gun')
             .get('example/demo/set');

var cb = function(data){
    console.log("update:", data);
};

myData.on(cb);

myData.put({hello:'world'});

出于调试目的,还有一个.val()方便的功能会自动为您记录数据:

var myData = Gun('https://gunjs.herokuapp.com/gun')
             .get('example/demo/set');
myData.on().val()
myData.put({hello:'world'});

但是,它仅用于一次性目的,而不是用于流式传输。就像注释一样,您可以传递.val(function(data){})一个回调,它将覆盖默认的便利记录器。

于 2015-09-30T21:16:38.890 回答
1

更新:因为 Gun v0.391 使用val()也需要回调。不再提供自动记录。

于 2016-05-30T06:15:28.600 回答