使用这样的cordova本地共享表:
module.controller('MyCtrl', function($scope, $cordovaSocialSharing) {
$scope.share = function() {
$cordovaSocialSharing
.share(message, subject, file, link) // Share via native share sheet
.then(function(result) {
// Success!
}, function(err) {
// An error occured. Show a message to the user
});
}
});
来自html模板,使用ng-click指令调用该函数。
<div ng-controller="MyCtrl">
<div ng-click="share()"></div>
</div>
我怎么知道用户是否点击了共享表中的取消按钮?
我已经尝试过查看结果,但它始终设置为真。
谢谢!