Cordova inAppBroser不适用于WP8

时间:2015-10-14 09:57:50

标签: cordova windows-phone-8 onsen-ui inappbrowser

我正在使用http mailtotel<ons-list> <ons-list-item ng-click="myApp.writeTo()">email</ons-list-item> <ons-list-item ng-click="myApp.callTo()">call</ons-list-item> <ons-list-item ng-click="myApp.onWeb()">web</ons-list-item> </ons-list> 这样:

模板

function callTo()  { window.open('tel:+421123456789', '_system', 'location=yes'); }
function writeTo() { window.open('mailto:test@mail.com', '_system', 'location=yes'); }
function onWeb()   { window.open('http://www.google.sk', '_system'); }

控制器

<access origin="tel:*" launch-external="yes" />
<access origin="mailto:*" launch-external="yes" />
<access origin="*" />
<allow-intent href="http://*/*" />
<allow-intent href="https://*/*" />
<allow-intent href="tel:*" />
<allow-intent href="sms:*" />
<allow-intent href="mailto:*" />
<allow-intent href="geo:*" />

config.xml中

4.3.0

这在桌面和Android设备上的Chrome中正常运行,但在WP8中只能使用http。 Cordova CLI版本:String deviceToken = ParseInstallation.getCurrentInstallation().get("deviceToken"); String objectID = ParseInstallation.getCurrentInstallation().getObjectId();

有人能帮助我吗?

0 个答案:

没有答案