“Konversi teks ke kode QR dalam sudut” Kode Jawaban

Konversi teks ke kode QR dalam sudut

# Old code in 1.x
<qrcode [qrdata]="'Your data'" [size]="256" [level]="'M'" usesvg="true"></qrcode>

# New code in 2.x or 10.x
<qrcode [qrdata]="'Your data'" [width]="256" [errorCorrectionLevel]="'M'" [elementType]="'svg'"></qrcode>
Open Opossum

Konversi teks ke kode QR dalam sudut

// File: example.ts
export class QRCodeComponent {
  public myAngularxQrCode: string = null;
  constructor () {
    // assign a value
    this.myAngularxQrCode = 'Your QR code data string';
  }
}

// File: example.html
<qrcode [qrdata]="myAngularxQrCode" [width]="256" [errorCorrectionLevel]="'M'"></qrcode>
Open Opossum

Jawaban yang mirip dengan “Konversi teks ke kode QR dalam sudut”

Pertanyaan yang mirip dengan “Konversi teks ke kode QR dalam sudut”

Lebih banyak jawaban terkait untuk “Konversi teks ke kode QR dalam sudut” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya