我想添加"评价我们"我的google play store
应用的Ionic
链接。我尝试如下
window.open('market://details?id=com.app.id', '_system');
<a href="market://details?id=com.app.id" target="_system">Rate us</a>
两者都不适合我。上面的代码有什么问题?有没有办法做到这一点?
答案 0 :(得分:4)
为什么不使用这个插件:https://github.com/pushandplay/cordova-plugin-apprate
我成功地使用它:
AppRate.preferences.useLanguage = cfg.useLanguage;
AppRate.preferences.storeAppURL.ios = cfg.appStoreAppURL.ios;
AppRate.preferences.storeAppURL.android = cfg.appStoreAppURL.android;
AppRate.preferences.customLocale = cfg.customLocale;
AppRate.preferences.displayAppName = cfg.displayAppName;
AppRate.preferences.usesUntilPrompt = cfg.usesUntilPrompt;
AppRate.preferences.promptAgainForEachNewVersion = false;
AppRate.promptForRating();
答案 1 :(得分:4)
我找到了答案,我们需要安装InAppBrowser
插件
cordova plugin add org.apache.cordova.inappbrowser
然后使用以下代码
window.open('market://details?id=com.app.id', '_system');
答案 2 :(得分:0)
使用自定义网址即可! 见这里:http://mcgivery.com/using-custom-url-schemes-ionic-framework-app/
安装:cordova插件添加https://github.com/EddyVerbruggen/LaunchMyApp-PhoneGap-Plugin.git - 变量URL_SCHEME = ionicapp
您可以将其重定向到市场,如上面链接所示。