是否可以在等待事件监听器时停止执行某个函数?

时间:2015-11-06 07:29:44

标签: javascript

使用gmail.js库我编写了这个函数,它从一个事件监听器接收一个字符串,我希望在发送之前将其注入我的电子邮件正文中。在等待事件监听器从外部脚本获取回复时,我怎么能以某种方式让函数停止执行?我有一种感觉可以用同步回调来完成,但我不知道那些足够好知道如何。我对此事有任何帮助表示感谢。

gmail.observe.before('send_message', function(url, body, data, xhr) {

console.log('In the before send message method');

var event = new CustomEvent('Marketing', {

    detail: {
        body: xhr.xhrParams.body_params.body,
        email: gmail.get.user_email()
    }
});

window.addEventListener('message', function(event) {
if (event.data.type && (event.data.type == "FROM_PAGE")) {
    console.log("received a reply");
    console.log(event.data.text);
    newstring = (event.data.candidate);
    console.log(newstring);
    console.log(event.data.token);
    gotNewString = true;
}
});


window.dispatchEvent(event);
console.log('sent the message to extension.js');
function listen(data){
    console.log("123123",JSON.stringify(data));
    console.log(data);
}

newstring = "Why must you torture me so?";

var oldCmml = xhr.xhrParams.url.cmml;

var body_params = xhr.xhrParams.body_params;

if (newstring.length > oldCmml) {
    xhr.xhrParams.url.cmml = newstring.length;
} else {
    while (newstring.length < oldCmml) {
        newstring += ' ';
    }
    xhr.xhrParams.url.cmml = newstring.length;
}
console.log(newstring);
body_params.body = newstring;

console.log("sent");

});

1 个答案:

答案 0 :(得分:0)

您无法在回调中停止执行某个功能。你必须改变调用函数的代码,等待你的函数完成。这通常是通过提供一个回调函数来完成的,一旦完成处理,您就不必调用它,例如:

gmail.observe.before('send_message', function(url, body, data, xhr, done) {
    // you can do processing here

    // and have to call done, to let the caller continue his work
    done();
});

对于听众来说,这显然通常不会提供,但由于gmail.js是开源的,你可以改变吗?