所以我现在已经在这3天了... 尝试了几个教程,如this一个,并在原始页面here之后尝试,并阅读了GitHub描述一千次。
我使用的版本:
$ npm -v
3.7.3
$ cordova -v
6.1.0 (cordova-lib@undefined)
$ ionic -v
1.7.14
我在Chrome浏览器中遇到的错误:无法读取属性' socialsharing'未定义。在Android或ios手机上如果按下按钮没有任何反应。甚至没有错误函数调用。
app.js + controller:(请注意我尝试使用window.plugins并且没有.plugins!)
angular.module('starter', ['ionic', 'ngCordova'])
.run(function($ionicPlatform) {
$ionicPlatform.ready(function() {
// Hide the accessory bar by default (remove this to show the accessory bar above the keyboard
// for form inputs)
if (window.cordova && window.cordova.plugins.Keyboard) {
cordova.plugins.Keyboard.hideKeyboardAccessoryBar(true);
cordova.plugins.Keyboard.disableScroll(true);
}
if (window.StatusBar) {
// org.apache.cordova.statusbar required
StatusBar.styleDefault();
}
});
})
.controller('shareCtrl',['$scope',function($scope) {
$scope.facebookShare=function(){
window.socialsharing.shareViaFacebook('Digital Signature Maker', null /* img */, "https://play.google.com/store/apps/details?id=com.prantikv.digitalsignaturemaker" /* url */, null,
function(errormsg){alert("Error: Cannot Share")});
}
$scope.whatsappShare=function(){
window.plugins.socialsharing.shareViaWhatsApp('Digital Signature Maker', null /* img */, "https://play.google.com/store/apps/details?id=com.prantikv.digitalsignaturemaker" /* url */, null,
function(errormsg){alert("Error: Cannot Share")});
}
我试图手动安装,这里出现了不同的错误。当我将SocialSharing.js插入index.html(在cordova.js之前)时,Chrome控制台说:未捕获的ReferenceError:require未定义,它位于SocialSharing.js的第1行:
var cordova = require('cordova');
所以我已经成功安装了require.sj(npm install -g requirejs),然后手动尝试,但出现了不同类型的错误。
尝试重新安装插件或删除并再次添加平台,但没有更改。
不确定它是否相关,但是已经尝试使用ngCordova的$ cordovaFileOpener2,而且总是给出了cordova的undefined错误。 (也没在真正的手机上工作)
感谢任何帮助! 感谢
更新 我已粘贴上面的所有.js文件内容。
请注意,我已成功安装了共享插件:
cordova plugin add cordova-plugin-x-socialsharing
Fetching plugin "cordova-plugin-x-socialsharing" via npm
Installing "cordova-plugin-x-socialsharing" for android
这是我的index.html:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
<title></title>
<link href="lib/ionic/css/ionic.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<!-- ionic/angularjs js -->
<script src="lib/ionic/js/ionic.bundle.js"></script>
<!-- cordova script (this will be a 404 during development) -->
<script src="lib/ng-cordova.min.js"></script>
<script src="cordova.js"></script>
<!-- your app's js -->
<script src="js/app.js"></script>
</head>
<body ng-app="starter">
<ion-view view-title="Share">
<ion-content ng-controller="shareCtrl">
<div class="card">
<div class="item item-divider">
<b> Share this app</b>
</div>
<ul class="list">
<li class="item" id="displayLabel">
<button class="button button-block button-royal item-icon-left" ng-click="whatsappShare()">
<i class="icon ion-social-whatsapp"></i>
WhatsApp
</button>
</li>
<li class="item" id="displayLabel">
<button class="button button-block button-royal item-icon-left" ng-click="facebookShare()">
<i class="icon ion-social-twitter"></i>
facebook
</button>
</li>
<li class="item" id="displayLabel">
<button class="button button-block button-royal item-icon-left" ng-click="OtherShare()">
<i class="icon ion-android-share-alt"></i>
Other
</button>
</li>
</ul>
</div>
</ion-content>
</ion-view>
</body>
</html>
答案 0 :(得分:2)
实际上,插件可以访问基于Web的应用程序通常无法使用的设备和平台功能。所以你可能无法在浏览器上实现插件功能。
您可以使用Plugin或ngCordova.js文件在设备上实现(android / ios / emulator)
使用插件
<强> 安装: 强> cordova插件添加cordova-plugin-x-socialsharing
用法:
.controller('ShareCtrl', function ($scope) {
$scope.whatsappShare = function(){
if(window.plugins.socialsharing) {
window.plugins.socialsharing.canShareVia('whatsapp',
'msg', null, null, null,
function (e) {
//do something
},
function (e) {
//error occured
});
}
}
})
使用ng-Cordova
安装: 在项目中添加ng-cordova文件并将其包含在index.html文件中
<script src="lib/ng-cordova.min.js"></script>
用法 :
.controller('ShareCtrl', function ($scope,$cordovaSocialSharing) {
$scope.shareByWhatsApp = function() {
$cordovaSocialSharing
.shareViaWhatsApp('sharedMsg', "", shareAppLink)
.then(function(result) {
}, function(err) {
// An error occurred. Show a message to the user
alert("error : "+err);
});
};
})