我需要覆盖 Meteor 的 oauth 包中的 oauth_server.js 中的一个函数。
我想换——
var closePopup = function(res) {
res.writeHead(200, {'Content-Type': 'text/html'});
var content =
'<html><head><script>window.close()</script></head></html>';
res.end(content, 'utf-8');
};
有类似的东西 -
var closePopup = function(res) {
res.writeHead(200, {'Content-Type': 'text/html'});
var content =
'<html><head><script>window.location.href = "http://www.google.com/";</script></head></html>';
res.end(content, 'utf-8');
};
该包是一个核心流星包,所以我认为我不能删除它并添加修改版本。
我试图将编辑后的变量(函数)添加到我的主服务器代码中,但没有看到流星的行为发生任何变化。
非常感谢,丹尼尔。