Javascript Array Concat 不工作。为什么?

IT技术 javascript jquery jquery-ui
2021-01-18 02:00:56

所以我创建了这个 jqueryui 小部件。它创建了一个 div,我可以将错误输入其中。小部件代码如下所示:

$.widget('ui.miniErrorLog', {
   logStart: "<ul>",   // these next 4 elements are actually a bunch more complicated.
   logEnd:   "</ul>",
   errStart: "<li>",
   errEnd:   "</li>",
   content:  "",
   refs:     [],

   _create: function() { $(this.element).addClass( "ui-state-error" ).hide(); },

   clear: function() { 
      this.content = ""; 
      for ( var i in this.refs )
         $( this.refs[i] ).removeClass( "ui-state-error" );
      this.refs = [];
      $(this.element).empty().hide(); 
   }, 

   addError: function( msg, ref ) {
      this.content += this.errStart + msg + this.errEnd; 
      if ( ref ) {
         if ( ref instanceof Array )
            this.refs.concat( ref );
         else
            this.refs.push( ref );
         for ( var i in this.refs )
            $( this.refs[i] ).addClass( "ui-state-error" );
      }
      $(this.element).html( this.logStart + this.content + this.logEnd ).show();
   }, 

   hasError: function()
   {
      if ( this.refs.length )
         return true;
      return false;
   },
});

我可以向其中添加错误消息,以及对将进入错误状态的页面元素的引用。我用它来验证对话框。在“addError”方法中,我可以传入一个 id 或一组 id,如下所示:

$( "#registerDialogError" ).miniErrorLog( 
   'addError', 
   "Your passwords don't match.", 
   [ "#registerDialogPassword1", "#registerDialogPassword2" ] );

但是当我传入一组 id 时,它不起作用。问题在于以下几行(我认为):

if ( ref instanceof Array )
   this.refs.concat( ref );
else
   this.refs.push( ref );

为什么那个 concat 不起作用。this.refs 和 ref 都是数组。那么为什么 concat 不起作用呢?

奖励:我在这个小部件中做了其他愚蠢的事情吗?这是我的第一个。

6个回答

concat 方法不会改变原数组,需要重新赋值。

if ( ref instanceof Array )
   this.refs = this.refs.concat( ref );
else
   this.refs.push( ref );
@Rafael:该push方法做到了,你可以做到[].push.apply(this.refs, ref)
2021-03-19 02:00:56
做到了。我原以为对象上的 concat 方法会附加到对象上。但我想这不是它的工作原理。
2021-03-23 02:00:56

原因如下:

定义和用法

concat() 方法用于连接两个或多个数组。

此方法不会更改现有数组,而是返回一个新数组,其中包含连接数组的值。

您需要将连接的结果分配回您拥有的数组中。

为什么,哦,为什么,我必须总是忘记这一点?
2021-03-26 02:00:56

要扩展 Konstantin Dinev:

.concat()不添加到当前对象,因此这将不会工作:

foo.bar.concat(otherArray);

这会:

foo.bar = foo.bar.concat(otherArray);

您必须使用 = 重新分配值到数组,您希望获得连接值

let array1=[1,2,3,4];
let array2=[5,6,7,8];

array1.concat(array2);
console.log('NOT WORK :  array1.concat(array2); =>',array1);

array1= array1.concat(array2);
console.log('WORKING :  array1 = array1.concat(array2); =>',array1);

dataArray = dataArray.concat(array2)