gpt4 book ai didi

meteor - 如何使用 Meteor 向客户端发送非基于集合的推送?

转载 作者:行者123 更新时间:2023-12-04 19:35:10 24 4
gpt4 key购买 nike

我想将文件上传到 Meteor 应用程序,一旦上传的文件在服务器上得到处理,就向客户端(仅向上传文件的人)推送一些关于成功上传的通知。我想我知道如何通过连接到 Express 来上传文件,但我如何只向这个客户端推送(或回调)?

最佳答案

使用方法:http://docs.meteor.com/#methods_header

服务器端js

Meteor.methods({
'mytask' : function(var1,var2) {
//do stuff
return {url:'a url'};
}
});

客户端js

//Run this to call the method
Meteor.call("mytask", "www.google.com", "www.bing.com", function(err, result) {
if(!err) {
alert(result);
}
}

关于meteor - 如何使用 Meteor 向客户端发送非基于集合的推送?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15402837/

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