2017-01-23 99 views
0

我想與WhatsApp,Facebook等共享科爾多瓦社交共享產品列表。 我試着Stringfying它,我嘗試了很多東西,但似乎沒有什麼工作,它發送的唯一的事情就是總是「[]」與科爾多瓦共享一個Json數組社交共享

因此,這裏是我的html按鈕

<button id="comp-list" ng-click="OtherShare()" class="button button-block button-success item-icon-left" > 
      <i class="icon ion-share"></i> 
      Share 
    </button> 

,這是部分負責在我的控制器

for(var i=0; i<$scope.products.length; i++){ 
    var prodValue = {price:$scope.products[i].price, quantity:$scope.products[i].quantity}; 
    prodValue.price= $scope.products[i].price; 
    prodValue.quantity= $scope.products[i].quantity; 
    $scope.shareList[$scope.products[i].name] = prodValue; 
} 
$scope.OtherShare=function(){ 
    window.plugins.socialsharing.share($scope.shareList, null, null, 'www.google.com'); 
}; 

因此,任何人知道我應該如何分享「shareList」使用這個插件的陣列? 任何可以幫助我共享whatsapp上shareList的內容的東西! =)

謝謝:)

回答

0

需要粘稠的文本,同時通過社交媒體分享

window.plugins.socialsharing.share(JSON.stringify($scope.shareList), null, null, 'www.google.com');