这个Jquery插件总是返回一个数组吗?

时间:2013-04-10 02:39:11

标签: jquery arrays object

我正在使用this plugin进行照片人脸检测。它可以工作,但是当图片中没有可检测到的面部时,不会调用错误功能。而是调用“完整”函数。

我认为当它无法检测到面部时,它不返回任何数组,或返回未定义的对象,或null,或者其他什么,所以我尝试过:

//also tried null this way
if(typeof coords[i].confidence === 'undefined') {
alert("you have little aptitude for programming."); 
}


if(coords instanceof Array) {

        alert("good job!!");
} else {
alert("not even close!!");
}


if(!(coords.length)) {
alert("you have a distorted perception of your own abilities.");
}


if (positionX > coords.length) {

alert(coords[i].confidence);
}

当检测到面部时,它会显示相应的警报,但是当未检测到面部时,不会显示警报。它只是调用“完整”功能。

这是脚本。如果我应该提供更多代码,请告诉我。

<script>
    $(function() {
        $('#try').click(function() {
            var $this = $(this);

            var coords = $('img').faceDetection({


                complete:function(img, coords) {
                    $this.text('Done!');

                },
                error:function(img, code, message) {
                    $this.text('error!');
                    alert('Error: '+message);
                }

            });



            for (var i = 0; i < coords.length; i++) {

//Here is where I have been putting those conditional statements.  

//This part, which appends a bordered div (#face) to the div containing the face pic, works fine.

                $('<div>', {
                    'class':'face',
                    'id':'face',
                    'css': {
                        'position': 'absolute',
                        'left':     coords[i].positionX +'px',
                        'top':      coords[i].positionY +'px',
                        'width':    coords[i].width +'px',
                        'height':   coords[i].height    +'px'
                    }

                })
                .appendTo('#content');                               


            } 
        });


        return false;
    });
    </script>

<a href="#" id="try">TRY IT NOW!</a>               

<div id="content">
 <img src="pic.jpg" id="myPicture"/>
</div>

1 个答案:

答案 0 :(得分:0)

无论成功与否,确实会调用

complete。如果未能检测到任何faces插件返回空数组,这就是您没有看到任何警报的原因。您的for循环未执行。