📜  Collect.js replace() 方法

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

Collect.js replace() 方法

replace() 方法用于替换原始集合中与给定字符串或数字键匹配的元素。如果对象中给定的键与集合中的键匹配,则替换其值,否则,如果键不匹配,则将其添加到集合中。

句法:

collect(array).replace(object)

参数: collect() 方法接受一个参数,该参数转换为集合,然后将 replace() 方法应用于它。 replace() 方法将对象或元素作为参数保存。

返回值:此方法返回具有替换值的集合元素。

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

示例 1:

Javascript
const collect = require('collect.js');
  
const collection =
  collect(['Geeks', 'GFG', 'GeeksforGeeks']);
  
const replaced =
  collection.replace({ 1: 'Welcome' });
  
console.log(replaced.all());


Javascript
const collect = require('collect.js');
  
const collection = collect({
    name: 'Rahul',
    age: 25,
    section: 'A',
    marks: 88,
    address: 'Noida'
});
  
const replaced = collection.replace({
    name: 'Rajesh',
    marks: 45
});
  
console.log(replaced.all());


输出:

{ '0': 'Geeks', '1': 'Welcome', '2': 'GeeksforGeeks' }

示例 2:

Javascript

const collect = require('collect.js');
  
const collection = collect({
    name: 'Rahul',
    age: 25,
    section: 'A',
    marks: 88,
    address: 'Noida'
});
  
const replaced = collection.replace({
    name: 'Rajesh',
    marks: 45
});
  
console.log(replaced.all());

输出:

{ name: 'Rajesh', age: 25, section: 'A', marks: 45, address: 'Noida' }