simplest_view:SimplestView使我们能够从模板中拆分Rails视图

时间:2024-02-26 09:32:42
【文件属性】:

文件名称:simplest_view:SimplestView使我们能够从模板中拆分Rails视图

文件大小:12KB

文件格式:ZIP

更新时间:2024-02-26 09:32:42

ruby rails templates erb actionview

最简单的视图 SimplestView在Rails 3/4应用程序中拆分视图和模板(erb / haml / etc),从而可以更轻松地提高控制器的代码质量,并从帮助程序模块中删除代码。 这是通过用您自己的视图类替换从ActionView :: Base继承的匿名类来实现的。 该视图类成为现有Rails模板中的上下文。 安装 将此行添加到您的应用程序的Gemfile中: gem 'simplest_view' 然后执行: $ bundle 或将其自己安装为: $ gem install simplest_view 用法 在ApplicationController或特定控制器中: i


【文件预览】:
simplest_view-master
----.gitignore(154B)
----README.md(3KB)
----Gemfile(98B)
----.rspec(26B)
----CODE_OF_CONDUCT.md(2KB)
----spec()
--------integration()
--------fixtures()
--------spec_helper.rb(662B)
----LICENSE.txt(1KB)
----.travis.yml(81B)
----lib()
--------simplest_view()
--------simplest_view.rb(906B)
----Rakefile(28B)
----simplest_view.gemspec(1KB)

网友评论