使用函数变量时函数内的函数无效

时间:2017-07-05 22:40:22

标签: javascript jquery function sorting

我有一个函数根据object属性排序一些json。当我将属性硬编码到sort函数中时它起作用,但是当它试图从display_list函数(sortCat)动态地拉它时,它不起作用。 resultDeals是json

function display_list(sortCat) {
if (resultDeals !== undefined) {
    resultDeals.sort(function(a, b) {
        return a.sortCat - b.sortCat;
    });
    for(i = 0; i < resultDeals.length; i++) {
        where sorted data is printed
    }
}

}

0 个答案:

没有答案