我尝试在nativescript-angular应用程序中使用nativescript-clipboard插件时出现以下错误。 因为我是本地人的新手,所以我很可能做错了。
这是完整的错误:
clipboard.setText中的错误:TypeError:无法读取属性 ' getSystemService'未定义的 (/home/linuxtest/sample-ng-todomvc/node_modules/nativescript-clipboard/clipboard.android.js:13:15) 我'米
目前有插件版本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);
});
}
}
提前致谢!
答案 0 :(得分:1)
我已在您在作者存储库中打开的问题中记录了解决方案,但为了让社区得到答案,也会在此处发布链接。 Solution to this problem in the authors repository