好色
发表于 2025-3-25 06:14:07
Ruby Introduction, not to become a Ruby guru but to understand Ruby on Rails. I will elaborate on the most important points, and the rest is then up to you. If you would like to know more about Ruby, I recommend the book The Ruby Programming Language by David Flanagan and Yukihiro Matsumoto.
inconceivable
发表于 2025-3-25 10:33:41
Routes,ils application fetches a URL. A route can be static and dynamic and pass any dynamic values with variables to the controller. If several routes apply to the same URL, the one that is listed at the top of config/routes.rb wins.
sinoatrial-node
发表于 2025-3-25 14:01:44
Tests,o be mad at you if you decide to just skip this chapter. You can create Rails applications without tests, and you are not likely to garner any bad karma as a result (at least, I hope not, but you can never be entirely sure with the whole karma thing).
BARK
发表于 2025-3-25 18:28:53
http://reply.papertrans.cn/59/5827/582627/582627_24.png
excursion
发表于 2025-3-25 20:46:58
http://reply.papertrans.cn/59/5827/582627/582627_25.png
HARP
发表于 2025-3-26 02:08:52
Stefan WintermeyerAn accelerated tutorial on the Rails 5 web development framework.Learn to persist data for your web application with Active Record.Employ test-driven development for your Rails-based web applications
flammable
发表于 2025-3-26 07:47:50
http://reply.papertrans.cn/59/5827/582627/582627_27.png
终端
发表于 2025-3-26 10:18:23
First Steps with Rails,Now that you have painstakingly read your way through the basics of Ruby in Chapter 1, you can move on to a more exciting topic. In this chapter, you will create your first small Ruby on Rails project.
导师
发表于 2025-3-26 14:40:19
http://reply.papertrans.cn/59/5827/582627/582627_29.png
PURG
发表于 2025-3-26 18:44:52
Scaffolding and REST,Scaffolding means simply that a basic scaffold for an application is created with a generator. This scaffold not only contains the model but also a simple web GUI (views) and of course a controller. The programming paradigm used for this is Representational State Transfer (REST).