如何实现"年率美国和QUOT;功能在PhoneGap的应用 [英] How to implement a "rate us" feature in a phonegap app

查看:272
本文介绍了如何实现"年率美国和QUOT;功能在PhoneGap的应用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想添加一个写评论或速度我们功能,我的应用程序,所以我的客户可以轻松率某种和审查我的应用程序。

I wish to add some sort of a "Write a Review" or "Rate Us" feature to my app so my customers can easily rate and review my app.

问题是应用程序正在使用手机的差距来实现。是否有可能使用HTML5手机的差距来实现此功能?

The problem is that the app is implemented using phone gap. Is it possible to implement this feature using html5-phone gap?

谢谢!

推荐答案

我用navigator.notification.confirm并当用户达到某一点,或使用你的应用程序这么多叫。当然,你需要添加自己的链接在

I use navigator.notification.confirm and have it called when the user reaches a certain point or uses your app so much. Of course you need to add your own links in.

请注意这个片段的引用我的应用程序的其他部分,以便定制,以满足您的需求。

Note this snippet references other parts of my app so customize to meet your needs.

if (settings.core.rate_app_counter === 10) {
    navigator.notification.confirm(
    'If you enjoy using domainsicle, whould you mind taking a moment to rate it? It won\'t take more than a minute. Thanks for your support!',
    function(button) {
        // yes = 1, no = 2, later = 3
        if (button == '1') {    // Rate Now
            if (device_ios) {
                window.open('itms-apps://itunes.apple.com/us/app/domainsicle-domain-name-search/id511364723?ls=1&mt=8'); // or itms://
            } else if (device_android) {
                window.open('market://details?id=<package_name>');
            } else if (device_bb){
                window.open('http://appworld.blackberry.com/webstore/content/<applicationid>');
            }

            this.core.rate_app = false;
        } else if (button == '2') { // Later
            this.core.rate_app_counter = 0;
        } else if (button == '3') { // No
            this.core.rate_app = false;
        }
    }, 'Rate domainsicle', ['Rate domainsicle', 'Remind me later', 'No Thanks']);
}

这篇关于如何实现&QUOT;年率美国和QUOT;功能在PhoneGap的应用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆