添加多个链接以在Phonegap应用程序上共享

时间:2018-11-26 09:53:49

标签: cordova cordova-plugins phonegap-plugins hybrid-mobile-app phonegap

我的要求是使用社交共享插件在一个共享中共享三个链接。在提供的常规语法中,我只能传递单个网址。

示例:

            var shareUrl='www.sample.com'
            var options = {
                subject: 'Sample subject',
                message: 'Sample message',
                url: shareUrl
            };

            var onSuccess = function(result) {
                console.debug("Share completed? " + result.completed);
                console.debug("Shared to app: " + result.app); 
            };

            var onError = function(msg) {
                console.debug("Sharing failed with message: " + msg);
            };
            window.plugins.socialsharing.shareWithOptions(options, onSuccess, onError);

是否可以使用任何方法共享多个URL。如果不存在,如果我在自己的消息中共享网址,会不会有问题?

1 个答案:

答案 0 :(得分:0)

您可以在邮件中添加多个URL。只需确保将它们隔开,以便可以区分每个链接。