recherche

Maison  >  Questions et réponses  >  le corps du texte

javascript - 如何删除抓到的空值

用的是NodeJs,抓取新闻,因为偶尔会抓到空值,所以想要在存入数据库前删除掉item里的空值。但我这样写并无用。

var newsList = [];
    $('.news-item').each(function() {
        var $me = $(this);
        var $title = $me.find('h2 a');
        var $time = $me.find('.time');
        var $url = $me.find('h2 a');

        var item = {
            title: $title.text().trim(),
            url: $url.attr('href'),
            time: $time.text().trim()
        };

        var i;
        for (i = 0; i < item.length; i++)
            if (item[i][0] == null) {
                item.splice(i, 1);
                i = i - 1;
        }

        newsList.push(item.title);

单独写 item.splice(1, 1); 时,报错 Object #<Object> has no method 'splice'

该如何解决呢?

阿神阿神2835 Il y a quelques jours345

répondre à tous(4)je répondrai

  • PHP中文网

    PHP中文网2017-04-10 15:06:04

    splice 只适用于数组
    对象的删除应该用 delete

    répondre
    0
  • 天蓬老师

    天蓬老师2017-04-10 15:06:04

    splice是javascript方法吧 jquery对象没有这个方法哦

    répondre
    0
  • PHP中文网

    PHP中文网2017-04-10 15:06:04

    1.得确定有值,所以提前要判空。
    2.可以typeof一下,看看什么类型,对应什么方法。

    répondre
    0
  • 黄舟

    黄舟2017-04-10 15:06:04

    Array.prototype.splice.call(item, 1, 1) 这样应该可以

    répondre
    0
  • Annulerrépondre