How to generate UUID with angular 2?

后端 未结 3 642
野的像风
野的像风 2021-01-31 08:45

I\'m using Angular 2 for a signup form: first name, last name, email and password.

After submit, the data is being stored via API call in a database (nodeJs and mongo) a

相关标签:
3条回答
  • 2021-01-31 09:05

    It's downloaded as a part of Angular's dependency, use it like:

    import { v4 as uuid } from 'uuid';
    
    @Component(..)
    export class AppComponent {
    
      console.log('new uid: ', uuid());
    }
    
    0 讨论(0)
  • 2021-01-31 09:07

    try this (https://github.com/wulfsolter/angular2-uuid)

    As the doc say :

    import { UuidService } from 'angular2-uuid';
    
    constructor(private uuid: UuidService) //<-- pass it in contructor as service
    
    const uuid = this.uuid.generate(); //<-- use it
    

    Hope it helps you! ..as you can see it changed a little bit from what it report here (https://www.npmjs.com/package/angular2-uuid)

    0 讨论(0)
  • 2021-01-31 09:15

    Issue fixed. Solution: I found out that when I did install the package angular2-uuid via command-line, it was automatically stored in package.json directly before/over the package: @angular/flex-layout.

    As the error was in a way not clear, I just did remove it to other position in the: package.json and the error is gone. everything works fine.

    0 讨论(0)
提交回复
热议问题