作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
在我的应用程序中,我需要创建 GUID,该 GUID 将用作 cookie,因此任何人都知道如何在 angular-2/typescript 或使用任何 angular2 依赖项/库中创建 GUID。
最佳答案
您甚至可以使用 npm 为您生成它。按照这个:
npm i guid-typescript --save
并在您的代码中使用:
import { Guid } from 'guid-typescript';
export class GuidExample {
public id: Guid;
constructor() {
this.id = Guid.create(); // ==> b77d409a-10cd-4a47-8e94-b0cd0ab50aa1
}
}
关于angular - 如何在 angular-2 中创建 GUID?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42782645/
我是一名优秀的程序员,十分优秀!