js concat是合并是返回一个新的数组,并不是改变原来的数组。这点小心
console.log(tmp.Table1)
console.log(res.data.FObject.Table1)
var tmp = tmp.Table1.concat(res.data.FObject.Table1)
var c = q.concat( b );
q; // [5,5,1,9,9,6,4,5,8] b; // ["tie","mao","csdn","ren","fu","fei"];
c; // [5,5,1,9,9,6,4,5,8,"tie","mao","csdn","ren","fu","fei"]