我正在考虑重新使用我的phonegap html,css和js代码作为网络应用。 我将通过删除任何仅限移动设备的功能。
目的是拥有一个提供某些移动应用功能的网络应用,目前我只使用很少的移动设备功能。但我猜测每次发布我的移动应用程序代码都会很麻烦。
你们之前有人试过这个吗?有什么提示吗?
答案 0 :(得分:7)
通过响应式设计,您的phonegap代码几乎可以在任何设备上运行。了解它的运行情况(设备和操作系统)非常重要,这样您才能做出相应的响应。我预先构建了一个window.deviceInfo
对象,其中包含以下信息:
window.deviceInfo.type
:handheld
,tablet
,desktop
window.deviceInfo.brand
:ios
,android
,microsoft
,webos
,blackberry
window.deviceInfo.mode
:browser
,standalone
,webview
window.deviceInfo.mobile
:true
,false
window.deviceInfo.phonegap
:true
,false
我使用名为<div>
的单个容器viewport
来创建响应式容器,并根据其所在设备对其进行调整大小。
这是设置所有内容的初始化代码:
initializeEnvironment();
initializeDimensions();
initializePhoneGap( function () {
//start app
} );
首先我设置了window.deviceInfo
。
function initializeEnvironment() {
//window.deviceInfo.type: handheld, tablet, desktop
//window.deviceInfo.brand: ios, android, microsoft, webos, blackberry
//window.deviceInfo.mode: browser, standalone, webview
//window.deviceInfo.mobile: true, false
//window.deviceInfo.phonegap: true, false
var userAgent = window.navigator.userAgent.toLowerCase();
window.deviceInfo = {};
if ( /ipad/.test( userAgent ) || ( /android/.test( userAgent ) && !/mobile/.test( userAgent ) ) ) {
window.deviceInfo.type = 'tablet';
} else if ( /iphone|ipod|webos|blackberry|android/.test( userAgent ) ) {
window.deviceInfo.type = 'handheld';
} else {
window.deviceInfo.type = 'desktop';
};
if ( /iphone|ipod|ipad/.test( userAgent ) ) {
var safari = /safari/.test( userAgent );
window.deviceInfo.brand = 'ios';
if ( window.navigator.standalone ) {
window.deviceInfo.mode = 'standalone';
} else if ( safari ) {
window.deviceInfo.mode = 'browser';
} else if ( !safari ) {
window.deviceInfo.mode = 'webview';
};
} else if ( /android/.test( userAgent ) ) {
window.deviceInfo.brand = 'android';
window.deviceInfo.mode = 'browser';
} else if ( /webos/.test( userAgent ) ) {
window.deviceInfo.brand = 'webos';
window.deviceInfo.mode = 'browser';
} else if ( /blackberry/.test( userAgent ) ) {
window.deviceInfo.brand = 'blackberry';
window.deviceInfo.mode = 'browser';
} else {
window.deviceInfo.brand = 'unknown';
window.deviceInfo.mode = 'browser';
};
window.deviceInfo.mobile = ( window.deviceInfo.type == 'handheld' || window.deviceInfo.type == 'tablet' );
};
然后我调整viewport
和其他任何需要它的东西。移动设备使用window.innerWidth
和window.innerHeight
来占据整个屏幕。
function initializeDimensions() {
var viewport = document.getElementById( 'viewport' );
if ( window.deviceInfo.mobile ) {
viewport.style.width = window.innerWidth + 'px';
viewport.style.height = window.innerHeight + 'px';
} else {
//requirements for your desktop layout may be different than full screen
viewport.style.width = '300px';
viewport.style.height = '300px';
};
//set individual ui element sizes here
};
最后,我使用window.device
(注意这与我创建的deviceInfo
对象不同)来验证phonegap是否可用并准备就绪。当我的代码在应该运行phonegap的设备上运行时,我会轮询该对象,而不是依赖于挑剔的deviceready
事件。调用initializePhoneGap()
回调后,应用就可以开始了。
在整个应用程序中,我将电话空白功能包装在if( window.deviceInfo.phonegap ) {}
。
function initializePhoneGap( complete ) {
if ( window.deviceInfo.brand == 'ios' && window.deviceInfo.mode != 'webview' ) {
window.deviceInfo.phonegap = false;
complete();
} else if ( window.deviceInfo.mobile ) {
var timer = window.setInterval( function () {
if ( window.device ) {
window.deviceInfo.phonegap = true;
complete();
};
}, 100 );
window.setTimeout( function () { //failsafe
if ( !window.device ) { //in webview, not in phonegap or phonegap failed
window.clearInterval( timer );
window.deviceInfo.phonegap = false;
complete();
};
}, 5000 ); //fail after 5 seconds
} else {
window.deviceInfo.phonegap = false;
complete();
};
};
答案 1 :(得分:1)
我们正在开发一款iPad应用程序并将其部署为移动网站。每当进行PhoneGap特定调用时,使用名为isRunningOnPhoneGap()的常用方法(如果代码作为网站运行,则返回false),我们决定是调用PhoneGap功能还是显示Web功能。这就是我们如何确定应用程序是作为网站还是在移动设备上运行的方式。
var isRunningOnPhoneGap: function () {
if ((document.URL.indexOf('http://') === -1) && (document.URL.indexOf('https://') === -1)) {
if (navigator.userAgent.match(/(iPhone|iPod|iPad|Android|BlackBerry)/)) {
return true;
} else {
return false;
}
} else {
return false;
}
}
答案 2 :(得分:0)
是的它会起作用。我已经尝试了相反的你的要求。包括cordova js文件有效,但有一些功能不受支持。但你肯定会得到基本的。