为什么我在 nativescript-angular 应用程序中得到 application.android.context 未定义?

Why do I get undefined for application.android.context in nativescript-angular app?

我在 nativescript-angular 应用程序中尝试使用 nativescript-clipboard 插件时遇到以下错误。 因为我是 nativescript 的新手,所以我很可能做错了什么。

这是完整的错误:

Error in clipboard.setText: TypeError: Cannot read property 'getSystemService' of undefined (/home/linuxtest/sample-ng-todomvc/node_modules/nativescript-clipboard/clipboard.android.js:13:15) I'm

当前有插件版本 1.1.3。

这是我尝试使用您的插件的部分

import {Component} from "angular2/core";
var clipboardModule = require("nativescript-clipboard");


@Component({
    selector: "my-clipboard",
    templateUrl: "templates/my-clipboard.html"
})
export class MyClipboard {
    greeting:string;
    constructor(){
        this.greeting = "Hello Github!";
    }

    save(text) {
        clipboardModule.setText(text).then(()=>{
            console.log(texto + ", copied to clipboard");
        });
    }

    read() {
        clipboardModule.getText().then((content)=>{
            console.log("Read from clipboard: " + content);
        });
    }
}

提前致谢!

我已将您在作者存储库中打开的问题的解决方案记录下来,但为了让社区获得答案,post 也会在此处 link。 Solution to this problem in the authors repository