广东话'将函数分配给变量并在另一个函数内调用它

时间:2017-01-12 19:20:37

标签: javascript

请你看一下这段代码,让我知道为什么会这样做

  

未定义点

processMap()上?

var mapPoints = function(model, viewSetting) {
    ajax(_workSpace.rootPath + 'Map/MapPoints', { }, function (result) {
        console.log('headMapOrders callback ', result);
        if (result.ReturnCode == 0) {
            UIPopup.showOk(result.ReturnMessage, resources.app_error);
        } else {}
       return;
    });
}       

function processMap()
{   
        var thepoints = mapPoints();
        console.log("The Points", thepoints);
}

processMap();

0 个答案:

没有答案