gpt4 book ai didi

javascript - 如何查看 meteor DDP流量?

转载 作者:可可西里 更新时间:2023-11-01 01:29:28 24 4
gpt4 key购买 nike

meteor 在 socks/websockets 上使用 DDP。我如何获得浏览器调试控制台中发生的任何类型的 View ?在 chrome 的网络面板中,至少只有一个“websocket”连接,没有太多关于其上运行的流量的信息。

我知道 arunoda 的 DDP analyzer and proxy但一直在寻找其他方法来获取有关交通的基本信息。我原以为 chrome 的调试工具会对 HTTP 以外的协议(protocol)提供更多支持,并且有兴趣了解其他人认为有用的其他协议(protocol)。

最佳答案

您可以尝试将消息记录为一个简单的起点。解析消息使其更易于检查。

if (Meteor.isClient) {

// log sent messages
var _send = Meteor.connection._send;
Meteor.connection._send = function (obj) {
console.log("send", obj);
_send.call(this, obj);
};

// log received messages
Meteor.connection._stream.on('message', function (message) {
console.log("receive", JSON.parse(message));
});
}

关于javascript - 如何查看 meteor DDP流量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25373648/

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