网站购物车   | 店铺购物车  
店铺平均得分:99.27 分,再接再厉!!!【查看全部评价】
评分 40分 50分 60分 70分 80分 90分 100分
数量 2 2 1 5 18 47 1616
本店铺共有 28 笔投诉记录,投诉率 2% ,高于平均投诉率 1% 【查看详细】
投诉类型
数量
比例
无法联系卖家
1
4%
服务态度问题
2
7%
商品问题
1
4%
发货问题
21
75%
退款问题
3
11%
已解决
28
100%
店主称呼:陈绍川   联系方式:购买咨询请联系我  17718307669    地址:北京 北京市 大兴区 黄村镇芦城村
图书分类
图书标签
店铺公告
本店开学活动 购书满78包邮主营大学教材 一万多种 查不到的同学可以咨询我们qq21777152 或者旺旺追梦迪克 杯水难求联系电话17718307669 13811182142
店铺介绍
主营大学教材 辅导书 考研 资格考试书等 库存10万本 欢迎咨询!
交易帮助
第一步:选择图书放入购物车。
第二步:结算、填写收货地址。
第三步:担保付款或银行汇款。
第四步:卖家发货。
第五步:确认收货、评价。
作/译者:(美)奥西尼 出版社:东南大学出版社
Rails Cookbook(影印版)( Rails 经典实例)
出版日期:2007年06月
ISBN:9787564107802 [十位:7564107804]
页数:514      
定价:¥68.00
店铺售价:¥27.20 (为您节省:¥40.80
店铺库存:38
注:您当前是在入驻店铺购买,非有路网直接销售。
正在处理购买信息,请稍候……
我要买: * 如何购买
** 关于库存、售价、配送费等具体信息建议直接联系店主咨询。
联系店主:购买咨询请联系我  17718307669
本店已缴纳保证金,请放心购买!【如何赔付?】
店主推荐图书:
买家对店铺的满意度评价:查看更多>>
评分
评价内容
评论人
订单图书
《Rails Cookbook(影印版)( Rails 经典实例)》内容提要:
Rails是业界领先的新一代Web 2.0应用程序开发框架,而这本《Rails Cookbook》里充满了为了让你成为Rails开发专家而准备的各种解决方案。讨论范围覆盖了从基本概念,如安装Rails及设置开发环境,到*新的各种技巧,如开发符合REST协议规范的Web服务等。
Rails可提供更轻量级的代码、更丰富的功能和更快捷的量身定制过程,由此带来了一场Web开发革命。《Rails Cookbook》应对来自真实世界的各种挑战,每个问题的解答部分均包含了经测试验证的解决方案,加上关于怎样解决和为什么如此解决的讨。因此你不仅可以知其然,还能知其所以然,以便将相关技巧直接运用于类似的场景。议题涵盖:
以Active Record库进行数据建模
以Action View和RHTML模板创建视图
在Action Controller中构建你的应用程序逻辑
测试并调试你的Rails应用程序
以JavaScript和Ajax构建交互式Web应用程序
确保你的应用程序的**性和可用性
以Mongrel和Apache部署你的应用程序
使用Capistrano实现
《Rails Cookbook(影印版)( Rails 经典实例)》图书目录:
Foreword
Preface
1.Getting Started
1.1 Joining the Rails Community
1.2 Finding Documentation
1.3 Installing MySQL
1.4 Installing PostgreSQL
1.5 Installing Rails
1.6 Fixing Ruby and Installing Rails on OS X 10.4 Tiger
1.7 Running Rails in OS X with Locomotive
1.8 Running Rails in Windows with Instant Rails
1.9 Updating Rails with RubyGems
1.10 Getting Your Rails Project into Subversion
2.Rails Development
2.1 Creating a Rails Project
2.2 Jump-Starting Development with Scaffolding
2.3 Speeding Up Rails Development with Mongrel
2.4 Enhancing Windows Development with Cygwin
2.5 Understanding Pluralization Patterns in Rails
2.6 Developing Rails in OS X with TextMate
2.7 Cross-Platform Developing eith RadRails
2.8 Installing and Running Edge Rails
2.9 Setting Up Passwordless Authentication with SSH
2.10 Generating RDoc for Your Rails Application
2.11 Greating Full-Featured CRUD Applications with Streamlined
3.Active Record
3.1 Setting Up a Relational Database to Use with Rals
3.2 Peogrammatically Defining Database Schema
3.3 Developing Your Database with Migrations
3.4 Modeling a Database with Active Record
3.5 Inspecting ModelRelationships from the Rails Console
3.6 Accessing Your Data via Active Record
3.7 Retrieving Records with find
3.8 Iterating Over an Active Record Result Set
3.9 Retrieving Data Efficiently with Eager Loading
3.10 Updating an Active Record Object
3.11 Enforcing Data Integrity with Active Record Validations
3.12 Executing Custom Queries with find_by_sql
3.13 Protecting Against Race Conditions with Transactions
3.14 Adding Sort Capabilities to a Model with acts_as_list
3.15 Performing a Task Whenever a Model Object Is Created
3.16 Modeling a Threaded Forum with acts_as_nested_set
3.17 Creating a Directory of Nested Topics with acts_as_tree
3.18 Avoiding Race Conditions with Optimistic Locking
3.19 Handling Tables with Legacy Naming Conventions
3.20 Automating Record Timestamping
3.21 Factoring Out Common Relationships with Polymorphic Associations
3.22 Mixing Join Models and Polymorphism for Flexible Data Modeling
4.Action Controller
4.1 Accessing Form Data from a Controller
4.2 Changing an Application's Default Page
4.3 Clarifying Your Code with Named Routes
4.4 Configuring Customized Routing Behavior
4.5 Displaying Alert Messages with Flash
4.6 Extending the Life of a Flash Message
4.7 Following Actions with Redirects
4.8 Generating URLs Dynamically
4.9 Inspecting Requests with Filters
4.10 Logging with Filters
4.11 Rendering Actions
4.12 Restricting Access to Controller Methods
4.13 Sending Files or Data Streams to the Browser
4.14 Storing Session Information in a Database
4.15 Tracking Information with Sessions
4.16 Using Filters for Authentication
5.Action View
5.1 Simplifying Templates with View Helpers
……
6.RESTful Development
7.Rails Application Testing
8.Java Script and Ajax
9.Action Mailer
10.Debugging Rails Applications
11.Security
12.Performance
13.Hosting and Deployment
14.Extending Rails with Plug-ins
15.Graphics
Appendix:Migrating to Rails 1.2
Index