ajax-call関数getRequestから変数の値を取得して関数testに入れるのに問題がありますが、どのように機能するのかわかりません。助けていただければ幸いです!
function test() {
var out = getRequest().name; //problem
console.log(out);
};
function getRequest() {
$.ajax({
url: '/nextdocument',
type: 'GET',
async: true,
cache: false,
timeout: 11000, //vänta på svar från servern om ingen inläsning
success: function(data) {
var name = data.description;
var price = data.price;
console.log("read--> " + name + price);
setTimeout(
'getRequest()',
1000
);
}
})
}