私は、関数showToastをコントローラからサービスに移動しました。 異なるコントローラとディレクティブでshowToastコードを共有するのが目的です。window.pluginsがサービスで定義されていません
var services = angular.module("myapp.services");
services.service('toast', function($cordovaToast){
this.showToast = function(msg) {
try {
window.plugins.toast.showWithOptions(
{
message: msg,
duration: "long", // which is 2000 ms. "long" is 4000. Or specify the nr of ms yourself.
position: "bottom",
},
{}, // optional
{} // optional
);
}
catch(e) {
console.log(e);
}
};
});
リファクタリングした後、私は以下の取得:
TypeError: Cannot read property 'toast' of undefined at Object.showToast (ToastService.js:7) at ReportProblemModalController.js:77
サービスにwindow.plugins
を公開する方法がわかりません。
EDIT
わからない、この場合に役立ちます:
"cordova-plugin-x-toast"
{
"variables": {
"FABRIC_API_KEY": "xxx",
"FABRIC_API_SECRET": "yyy"
},
"locator": "cordova-fabric-plugin",
"id": "cordova-fabric-plugin"
}
],
を...しかし、私は(window.plugin
がサービスで定義されていないようPROBは、他の場所で感じているとアプリには他のプラグインがあります)。
あなたはどのようなライブラリを使用していますか? – Yaser