I have been reading agile web development with rails over the past few days.
Before reading a book, I thought of the following questions, which need to be found in the book:
- How to input validate, such as a required, number, date, range, and general logic check?
- How can I change the default input format? For example, the default format of datetime is yyyy-mm-dd hh-mm. How to Use yyyy-mm-dd?
- How to encrypt password settings?
- How to Implement the drop-down selection box?
- Is there a masterpage?
- How to Use session and cookie?
- How to migrate pages?
- How to Implement transaction?
- How to implement unit test? What about performance test?
- How does the active record process multiple tables?
- Is there Ajax?
- How to use web service?
- How to Use cache?
After reading this book for four days, I finally finished reading this book :)
In addition to question 5, you can also find the answer.
The general feeling after reading the book is that rails has changed our development model,
You can focus on a more abstract level and quickly develop a prototype for iterative development. In addition, Dynamic Language performance is really cool.