所以我创建了这个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 );
为什么连续工作没有。 this.refs和ref都是数组。那么为什么concat不工作呢?
奖励:我在这个小部件中做了什么其他的蠢事吗?这是我的第一个。
答案 0 :(得分:193)
concat方法不会更改原始数组,您需要重新分配它。
if ( ref instanceof Array )
this.refs = this.refs.concat( ref );
else
this.refs.push( ref );
答案 1 :(得分:57)
原因如下:
定义和用法
concat()方法用于连接两个或多个数组。
此方法不会更改现有数组,但会返回新数组 array,包含连接数组的值。
您需要将连接的结果分配回您拥有的数组中。
答案 2 :(得分:6)
您必须使用=将值重新分配给array,以获取隐含的值
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);
答案 3 :(得分:2)
在Konstantin Dinev上进行扩展:
.concat()
不会添加到当前对象,因此无法正常工作:
foo.bar.concat(otherArray);
这将:
foo.bar = foo.bar.concat(otherArray);
答案 4 :(得分:0)
dataArray = dataArray.concat(array2)
答案 5 :(得分:0)
请注意,如果您在使用 concat 函数时确实想要一个可变数组(可变我的意思是它不会创建新数组而是改变现有数组),您可以为该数组实例重新分配 concat 函数.当我需要这个时,我做了什么。
let myArray = [];
myArray.concat= function( toAdd){
if(Array.isArray(toAdd)){
for(let node of toAdd)
this.push(node);
}else
this.push(toAdd);
}