我有两个名为 main.js 和 utility.js 的 js 文件。我从 main.js 调用 ajax,我想要 main.js 中的 json 响应。
主.js:
var details= getUIContent();
实用程序.js:
function getUIContent(){
$.ajax({
type: "POST",
url: "http://abc.com/portal",
async: false,
success: function(message){
channels = message.data.length;
alert('the channel length'+channels);
return message;
}
});
}
我在utility.js 中得到响应。问题是我无法在 main.js 中获得响应。它给出了未定义的错误。
谁能帮我