📜  Collect.js merge() 方法

📅  最后修改于: 2022-05-13 01:56:36.651000             🧑  作者: Mango

Collect.js merge() 方法

merge() 方法用于将给定对象合并到原始集合中。如果给定对象的键与集合对象相同,则它会覆盖键的值。

句法:

collect(array).merge(object)

参数: collect() 方法采用一个参数,该参数转换为集合,然后对其应用 merge() 方法。 merge() 方法将对象作为参数保存。

返回值:此方法返回合并元素的集合。

模块安装:使用以下命令从项目的根目录安装collect.js模块:

npm install collect.js

下面的示例说明了 collect.js 中的 merge() 方法:

示例 1:文件名:index.js

Javascript
// Requiring the module
const collect = require('collect.js');
  
let obj = ['Geeks', 'GeeksforGeeks'];
  
// Function call
const collection = collect(obj);
  
const merged_val = collection.merge(['Welcome', 'GFG']);
  
// Printing the merged collection
console.log(merged_val.all());


Javascript
// Requiring the module
const collect = require('collect.js');
  
let obj = [
    {
        name: 'Rahul',
        dob: '25-10-96',
    },
    {
        name: 'Aditya',
        dob: '25-10-96',
    }
];
  
// Function call
const collection = collect(obj);
  
const merged_val = collection.merge({
    address: 'Noida',
    school: 'GeeksforGeeks',
});
  
// Printing the merged collection
console.log(merged_val.all());


使用以下命令运行index.js文件:

node index.js

输出:

[ 'Geeks', 'GeeksforGeeks', 'Welcome', 'GFG' ]

示例 2:文件名:index.js

Javascript

// Requiring the module
const collect = require('collect.js');
  
let obj = [
    {
        name: 'Rahul',
        dob: '25-10-96',
    },
    {
        name: 'Aditya',
        dob: '25-10-96',
    }
];
  
// Function call
const collection = collect(obj);
  
const merged_val = collection.merge({
    address: 'Noida',
    school: 'GeeksforGeeks',
});
  
// Printing the merged collection
console.log(merged_val.all());

使用以下命令运行index.js文件:

node index.js

输出:

[
  { name: 'Rahul', dob: '25-10-96' },
  { name: 'Aditya', dob: '25-10-96' },
  address: 'Noida',
  school: 'GeeksforGeeks'
]