如何在phonegap应用程序中实现“评分”function

我想添加某种“写评论”或“评价我们”function到我的应用程序,以便我的客户可以轻松地评价和审查我的应用程序。

问题是,该应用程序是使用电话差距来实现的。 是否有可能实现这个function使用html5电话差距?

谢谢!

我使用navigator.notification.confirm,并在用户达到某个特定点或使用您的应用程序时调用它。 当然,你需要添加自己的链接。

请注意,此代码段引用了我的应用程序的其他部分,以便自定义以满足您的需求。

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']); } 

您可以结帐http://itunes.apple.com/linkmaker

另请参阅有关直接在您的应用的评论页面上创buildurl的部分。

http://www.manicgaming.com/2010/12/make-your-app-easy-to-rate/

最后:

“评价/查看此应用”的app store链接

仅供参考,在wwdc '11会谈中特别不鼓励这个应用程序提醒。

您必须按如下方式调用window.open

 window.open("market://details?id=com.your.app","_system");