我想調用一個Web API與jquery $ ajax()函數,在進行調用後我不會將結果存儲在我的打字稿變量中,但我沒有想到如何做到這一點。訪問打字稿內的jQuery變量
$.ajax({
method: "POST",
url: 'URL',
data: { email:'[email protected]',
password:'pass'}
})
.done(function(msg) {
this.response=msg;
}) .fail(function(msg) {
this.response=msg;
})
在ajax調用之外聲明變量並將結果存儲在那裏。 –
@Our_Benefactors uhm ..不... –
'這不是你想象的那樣,即使是這樣,做你正在做的事情也不會奏效。您需要使用承諾$ .ajax返回。 –