优秀背包

文章
4
资源
0
加入时间
2年10月17天

js获取两个数组的合集和差集

打印两个数组之间的差集 var a = [110000,150000,310000]; var b = [110000,310000]; var c = []; var tmp = a.concat(b); var o = {}; for (var i = 0; i < tmp.length; i ++) (tmp[i] in o) ? o[tmp[i]] ++ : o[tmp[i]] = 1; for (x in o) if (o[x] == 1) c.push(x); cons

magento -- 添加中国省份列表

magento本身的数据库里不包含中国的省份信息,你可以执行以下的SQL语句来添加          添加到directory_country_region表         INSERT INTO `directory_country_region` (`region_id`, `country_id`, `code`, `default_name`) VALUES (NUL