
webapp
文章平均质量分 70
luo_brian
这个作者很懒,什么都没留下…
展开
-
11个有用的移动网页开发App和HTML5框架
在过去的两年里,触屏设备飞速增长。iOS和Android设备让开发者和设计师开始重新思考他们的网页应用,以提供更好的触屏体验。 移动Web应用相对于本地的App有很多优势,虽然也有很多设计和开发上的挑战。这里列出了一系列有用的框架来帮助基于HTML的webapp开发。他们支持大部分流行的智能手机和平板。 1.Lungo.js:HTML5移动开发框架 Lungo.js是第一个应用H转载 2013-02-14 05:37:47 · 522 阅读 · 0 评论 -
Phonegap在ios7上系统状态栏的问题解决
用Phonegap+jqm开发的应用,在ios6下没问题,但是在ios7下会出现如下系统状态栏和header重合的问题: 搜索了一下,发现这其实是phonegap当前版本的一个已知问题,通过修改./platforms/ios/whhe/Classes/MainViewController.m,就可以解决: - (void)viewWillAppear:(BOOL原创 2013-10-11 01:17:46 · 2908 阅读 · 3 评论 -
JQM+Phonegap跨域问题的解决
1. 在本地调试阶段,chrome浏览器的默认安全规则不允许跨域访问,要让jqm在chrome中跨域访问: a) In JQM: $(document).bind("mobileinit", function() { .... $.mobile.allowCrossDomainPages = true; } b) Mac OS下允许Chrome跨域, 使用下面原创 2013-10-10 23:18:31 · 1029 阅读 · 0 评论 -
Mac OS下phonegap开发环境的建立
$ sudo npm install -g phonegap 1. 安装brew包管理器 sudo su curl -L http://github.com/mxcl/homebrew/tarball/master | tar xz --strip 1 -C /usr/local 这样你的系统中就有brew命令了,可以用下面的命令来安装比如wget: $原创 2013-10-10 23:48:19 · 2448 阅读 · 0 评论 -
jQuery Mobile: Prefetching and Caching Pages
This is my third post of jQuery Mobile Series and In first two Post, I had explained about Writing your first jQuery Mobile app - Part 1 and Create Multiple jQuery Mobile Pages and Link them - P转载 2013-09-21 14:58:19 · 660 阅读 · 0 评论 -
Tips for speeding up jQuery Mobile
Several people ask about how they can speed up jQuery Mobile, so I figured there should be a thread on tips for speeding up your jQuery Mobile projects. ELIMINATE WASTE: Decouple jQuery Mobi转载 2013-09-21 03:41:49 · 532 阅读 · 0 评论 -
REST API的身份验证
George Reese在文中概括了他认为REST API Authentication所应该遵循的3条原则: 1. All REST API calls must take place over HTTPS with a certificate signed by a trusted CA. All clients must validate the certificate before in转载 2013-02-17 10:46:31 · 484 阅读 · 0 评论 -
OpenSSL命令行工具验证数字签名
一、发送方A: 生成私钥: OpenSSL> genrsa -passout pass:123456 -out apri.pem 1024 生成公钥: OpenSSL> rsa -passin pass:123456 -pubout -in apri.pem -out apub.pem 用B的公钥加密数据: OpenSSL> rsautl -encrypt -pubin -inkey转载 2013-02-17 11:07:47 · 486 阅读 · 0 评论 -
OpenSSL建立网络证书颁发机构及服务器证书
使用Openssl来在Linux系统下生成证书 1、SSL所使用的证书可以是自己建的,也可以通过一个商业性CA如Verisign 或 Thawte签署的。 2、证书的概念:首先要有一个根证书,然后用根证书来签发服务器证书和客户证书,一般理解:服务器证书和客户证书是平级关系。 因此证书有:即根证书,服务器证书,客户端证书 在生成证书之前,一般会有一个私钥,同时用私钥生成证书请求,再利用证书服转载 2013-02-18 00:06:15 · 574 阅读 · 0 评论 -
Tiggr, a Web-Based IDE for Building Mobile Apps
Tiggr is a Web-based IDE for building mobile Web and native apps. Today I’d like to givel you 14 reasons why this new-of-a-kind IDE deserves your attention. 1. Mobile Apps IDE in the Cloud – Access Y转载 2013-02-14 05:36:29 · 660 阅读 · 0 评论 -
Handling Asynchronous REST Operations
In his new post - Slow REST Tim Bray tries to answer the question: In a RESTful context, how do you handle state-changing operations (POST, PUT, DELETE) which have substantial and unpredictable lat转载 2013-02-15 15:30:56 · 336 阅读 · 0 评论