将json结果返回给javascript函数

时间:2015-12-30 13:06:33

标签: javascript c# .net json asp.net-mvc

我无法返回javascript函数值:

function GetUserName() {
                var returnUserName;
                $.getJSON('/claims/GetUserName', function (data) {
                    returnUserName = "Test";
                    return false;
                    //callback(returnUserName);
                });
                return returnUserName;
}

我期待“测试”作为返回值,但我得到“未定义”

0 个答案:

没有答案