如何从$ .get请求中获取值并立即将其作为返回值发送

时间:2017-06-12 07:31:20

标签: jquery

我需要使用$ .get从路线中获取值。 我得到了它,但我不能等到所有其他功能完成后才能返回值。

function myFunction(str) { // str is my word to be searched.
    var obj = {str};
    $.get('/pronunciation/words'+'?'+$.param(obj), function( data ) {
    // I would like to pass data straightway after the line above. 
    return data;
});

0 个答案:

没有答案