Javascript传递的数组没有长度

时间:2018-01-09 13:55:24

标签: javascript

当我尝试从我传递的数组中访问length属性时,我的javascript代码停止执行。

var arrParams = getParams(url);
var strRef = getRef(arrParams);

function getRef(pv_arrParams)
{
    portFromCS.postMessage({greeting: 'before .length'});
    portFromCS.postMessage({greeting: pv_arrParams.length}); <- no log
    .
    .
    .
}

数组不为null或为空。当我调试它的工作正常但不是。

编辑:这是一个例子。它是一个Firefox插件 https://www.file-upload.net/download-12913625/example.rar.html

所以当我调试它不是空的或未定义时:

enter image description here

0 个答案:

没有答案