阅读更多

5顶
0踩

编程语言

转载新闻 Ext Scaffold Generator Plugin for Rails

2008-01-24 16:20 by 见习记者 xxj 评论(4) 有5928人浏览
Martin Rehfeld 发布了Ext for rails 的Generator,新增了MIMETYPE ext_json, 并且继承了 Array 和 ActiveRecord::Base 提供 ext_json 方法。



近来Ext开始越来越红火起来,rails+ext 也许是个不错的选择。

# GET /posts
# GET /posts.ext_json
def index
  respond_to do |format|
    format.html     # index.html.erb (will fire ext_json request)
    format.ext_json { render :json => Post.find(:all).to_ext_json }
  end
end
5
0
评论 共 4 条 请登录后发表评论
4 楼 flymonk 2008-01-25 09:39
可能是系统的问题,不用太过苛责赛
3 楼 laiseeme 2008-01-25 08:58
我也迷糊了一下,java怎么还有#号
2 楼 darkhucx 2008-01-25 08:50
Ext Scaffold Generator Plugin for Rails 不是标题上写的就是Rails的插件吗?呵呵
1 楼 wuguoming2004 2008-01-25 08:14
引用

近来Ext开始越来越红火起来,rails+ext 也许是个不错的选择。

Java代码 复制代码

   1. # GET /posts 
   2. # GET /posts.ext_json 
   3. def index 
   4.   respond_to do |format| 
   5.     format.html     # index.html.erb (will fire ext_json request) 
   6.     format.ext_json { render :json => Post.find(:all).to_ext_json } 
   7.   end 
   8. end 

# GET /posts
# GET /posts.ext_json
def index
  respond_to do |format|
    format.html     # index.html.erb (will fire ext_json request)
    format.ext_json { render :json => Post.find(:all).to_ext_json }
  end
end


来自:GL Networks Inside


什么java代码 明明ruby代码 编辑新闻的也太不负责了吧

发表评论

您还没有登录,请您登录后再发表评论

相关推荐

  • rails 单模型多态_Rails Generator备忘单

    rails 单模型多态As a beginner of Rails, I often get confused about what generator generates what and the syntax of these commands. Below is a cheat sheet on the four main generators I find most useful...

  • 诗歌rails之 Generator

    关键字: rails generator 来看看怎样写自己的Generator吧 首先运行: ruby代码 rubyscript/generate ruby script/generate console中的输出可以看到Rails默认的generate: ruby代码 ...

  • Rails宝典之第五十八式: 怎样写Generator

    来看看怎样写自己的Generator吧 首先运行: [code] ruby script/generate [/code] console中的输出可以看到Rails默认的generate: [code] Installed Generators Builtin: controller, integration_test, ...

  • Rails 简单的小例子 —— 新建一个购物网站

    利用scaffold创建资源 $ rails generate scaffold production name:text price:float amount:integer 显示rails为资源分配的routes地址 $ rake routes | grep production DB Migrate $ bin/rails db:mig

  • [Rails 常用插件简介]CRUD Generator 2

    今天在http://agilewebdevelopment.com/plugins/crud_generator_2...CRUD Generator 2 正如标题,是一个生成代码的脚手架,增删改查,和我们rails自带的resource scaffold一样,都生成基于rest的代码 一:安装 ...

  • Creating Your Own Rails API Documentation

    You can create your own local version of the consolidated Rails API docu-mentation.Justtypethefollowingcommandsatacommandprompt(remem-bering to start the command window in your Rails environment if yo

  • rails g -h (查看可以执行的rake 任务)

    rails g -h (查看可以执行的rake)Rails: assets channel controller generator helper integration_test jbuilder job mailer migration model resource scaffold scaffold_controller taskCo

  • Rails Generate 列示

    Unlike the scaffold generator, the resource generator does not create views or add any methods to the generated controller. [/quote] ./script/generate resource post # no attributes ./script/generate...

  • 生成和定制Rails生成器和模板 Creating and Customizing Rails Generators & Templates

    花了两个小时左右将这篇文章译为中文,因为有一些词不是很明确,作为刚刚学习Ruby on Rails的人,只好求大家帮忙在回复里面修改了。 Creating and Customizing Rails Generators & Templates 生成和定制Rails...

  • 中文Scaffold

    Rails1.2以后有一个scaffold_resource的generator,那些column在view里都展开了。相比老的scaffold要管用很多(老的scaffold基本上是个花瓶功能),开发可以在这个生成结果的基础上开展。 我在用rails做一个中文...

  • rails文档

    rails命令(rails) 创建应用程序(rails new) 适用版本 1.0.0  1.1.0  1.1.1  1.1.6  1.2.0  1.2.6  2.0.0  2.0.1  2.0.3  2.1.0  2.2.1  2.3.2  2.3.8  3.0.0  3.0.5  ...

  • Rails2 的授权认证

    用了Rails2 以后,所有的东西都要去寻求插件帮助了, 在网上找了篇文章,好像还是挺有用的。我在本地使用act_as_authenticated 插件和Role_requirement插件还是配置成功了的 关键词: authorization(授权认证) ...

  • rails常用插件

    常用rails插件(可去https://github.com上搜索得到): 1.rest-authentication、devise:用户验证插件 2.attachment_fu、carrierwave、Paperclip :文件上传插件 3.random_finders:数据库随机查找辅助插件 4.gruff...

  • Kindeditor rails3 插件 支持上传图片和mongoid

    一直比较喜欢Kindeditor,不过上传图片我一直没看他的代码,前二天看到http://dnnta.iteye.com/blog/746577 这个帖子,弱于明白kindeditor 图片上传的json了,就做了个简单的plugin,功能比较简单,主要是方便自己使用...

  • Active Scaffold Upload Branch

    我真的被 rails plugin 嚇到了。這幾天試著做 web development, 大家應該都知道我跟這個領域不太熟吧?可是,忽然間我覺得,這樣幾乎什麼都能做了。三個 plugin, 依照我嘗試的時間順序:1. FileColumn2. ...

  • Getting Started with Ruboss and Ruby on Rails

    http://github.com/ruboss/ruboss4ruby/wikis/getting-started-with-ruboss-and-ruby-on-rails ...In this tutorial we will build a new Rails application from scratch using the Ruboss Framewor...

  • RSpec测试Rails程序快速上手

    1,安装 [code] gem install rspec ruby script/plugin install svn://rubyforge.org/var/svn/rspec/tags/CURRENT/...ruby script/plugin install svn://rubyforge.org/var/svn/rspec/tags/CURRENT/rspec_on_rai...

  • play with paperclip plugin, 为model添加附件

    然后安装scaffolding plugin, (因为这个模块被rails2.0赶出去,变成plugin了) C:\workspace2\bookshop>ruby script/plugin install scaffolding 然后运行 ruby script/generate scaffold produc...

  • 风光储直流微电网Simulink仿真模型:光伏发电、风力发电与混合储能系统的协同运作及并网逆变器VSR的研究,风光储直流微电网Simulink仿真模型:MPPT控制、混合储能系统、VSR并网逆变器的设

    风光储直流微电网Simulink仿真模型:光伏发电、风力发电与混合储能系统的协同运作及并网逆变器VSR的研究,风光储直流微电网Simulink仿真模型:MPPT控制、混合储能系统、VSR并网逆变器的设计与实现,风光储、风光储并网直流微电网simulink仿真模型。 系统由光伏发电系统、风力发电系统、混合储能系统(可单独储能系统)、逆变器VSR?大电网构成。 光伏系统采用扰动观察法实现mppt控制,经过boost电路并入母线; 风机采用最佳叶尖速比实现mppt控制,风力发电系统中pmsg采用零d轴控制实现功率输出,通过三相电压型pwm变器整流并入母线; 混合储能由蓄电池和超级电容构成,通过双向DCDC变器并入母线,并采用低通滤波器实现功率分配,超级电容响应高频功率分量,蓄电池响应低频功率分量,有限抑制系统中功率波动,且符合储能的各自特性。 并网逆变器VSR采用PQ控制实现功率入网。 ,风光储; 直流微电网; simulink仿真模型; 光伏发电系统; 最佳叶尖速比控制; MPPT控制; Boost电路; 三相电压型PWM变换器;

  • 以下是针对初学者的 **51单片机入门教程**,内容涵盖基础概念、开发环境搭建、编程实践及常见应用示例,帮助你快速上手

    以下是针对初学者的 **51单片机入门教程**,内容涵盖基础概念、开发环境搭建、编程实践及常见应用示例,帮助你快速上手。

Global site tag (gtag.js) - Google Analytics