📜  Lodash _.uniqueId() 方法

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

Lodash _.uniqueId() 方法

Lodash _.uniqueId() 方法用于每次为某个元素创建一个唯一的 id。此方法适用于为大多数用例分配唯一 ID,但不适用于即使项目重新启动也始终需要唯一 ID 的复杂项目。

句法:

_.uniqueId(prefix)

参数:此方法接受如上所述和如下所述的单个参数:

  • prefix: ID 前缀的值。

返回值:该方法返回字符串唯一ID。

示例 1:

Javascript
// Requiring the lodash library  
const _ = require("lodash");  
            
// Use of _.uniqueId()  
// Method without the prefix
let gfg = _.uniqueId(); 
        
// Printing the output  
console.log(gfg);


Javascript
// Requiring the lodash library  
const _ = require("lodash");  
    
// Use of _.uniqueId()  
// Method with prefix
let ans = _.uniqueId("gfg_"); 
  
// Printing the output  
console.log(ans); 
  
let ans1 = _.uniqueId("gfg_"); 
  
// Printing the output  
console.log(ans1);


输出:

1

示例 2:

Javascript

// Requiring the lodash library  
const _ = require("lodash");  
    
// Use of _.uniqueId()  
// Method with prefix
let ans = _.uniqueId("gfg_"); 
  
// Printing the output  
console.log(ans); 
  
let ans1 = _.uniqueId("gfg_"); 
  
// Printing the output  
console.log(ans1);

输出:

gfg_1
gfg_2