Rails上的iPhone
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Rails上的iPhone相关的知识,希望对你有一定的参考价值。
A simple way to build iPhone specific interface with Rails
class ApplicationController < ActionController::Base before_filter :check_iphone protected def iphone? request.user_agent.include?('iPhone') end def check_iphone if iphone? request.parameters[:format] = 'iphone_html' end end end class DashboardController < ApplicationController def index @top_movies = Movie.top_movies @movie = @top_movies.first respond_to do |format| format.html # index.html.erb format.iphone_html #index.iphone_html.erb end end end
以上是关于Rails上的iPhone的主要内容,如果未能解决你的问题,请参考以下文章
iphone / Objective c的最佳代码片段网站是啥[重复]
从 XCode 访问 Mac 上的本地主机? Phonegap 通过 Ajax 与本地 Rails 应用程序通信
为现有的 rails 应用程序创建 iphone 和 android 应用程序