为什么Windows桌面10平板打不开NFCreader标签页?

Why Windows desktop 10 tablet cannot open NFC reader tags page?

我为 Windows 桌面 10 平板电脑开发了一个 Ionic 应用程序。它包含两个页面,主要是读取DB和点击按钮读取NFC页面。

当我构建应用程序时出现以下错误。

安装插件后

ionic cordova plugin add phonegap-nfc
npm install --save @ionic-native/nfc

您需要将其添加到您的应用模块 (app.module.ts) 的 providers 数组中:

...

import { NFC } from '@ionic-native/nfc';

...

@NgModule({
  ...

  providers: [
    ...
    NFC,  // <----- like this!
    ...
  ]
  ...
})
export class AppModule { }