我无法返回javascript函数值:
function GetUserName() {
var returnUserName;
$.getJSON('/claims/GetUserName', function (data) {
returnUserName = "Test";
return false;
//callback(returnUserName);
});
return returnUserName;
}
我期待“测试”作为返回值,但我得到“未定义”