离子社交份额未定义

Ionic social share is undefined

我正在尝试按照 ionic 中的教程示例进行操作

window.plugins.socialsharing.shareWithOptions(options, onSuccess, onError);

但我不断得到

ionic.bundle.js:20306 TypeError: Cannot read property 'socialsharing' of undefined

我想我在 app.js 中遗漏了一些内容来包含库?

angular.module('starter', ['ionic','leaflet-directive', 'ngCordova', ... ?

需要在上面一行加载吗? 我是否必须将它作为模块加载到控制器中?我没有在教程中找到它并且不清楚?

我尝试 cordova plugin add 多次,作为包名或通过 git

原来我查错了文档。如果使用 ionic,请检查 ngCordova 文档而不是官方包文档。它们不一致。

我必须将 $cordovaSocialSharing 添加到我的控制器,它在设备上工作,而不是在模拟器中,也不是在我的开发浏览器中 chrome。