Rails built log functionality, or more precisely, rails exposes the Logger object, which can be used in all rails programs.
Logger is a simple log frame ported from Ruby (you can type RI logger to view the documentation of the standard library in Ruby's command line), and for us, we just need to know that logger can t
Lin Shi, a friend of mine, recommended a web development tool: Ruby. He went to his side in the morning and demonstrated it. It was amazing! As long as you define a database table, regardless of ms SQL and MySQL, the rest of the work is about the rails framework. Let's take a look at the self-contained page of the rails framework. One word can be used to describe
Here's how to fix this annoying Ruby on Rails popup message: "The program can ' t-start because Msvcrt-ruby18.dll is missing From your computer. Try reinstalling to fix this problem. "
This is fix applies if you are using cucumber on Windows.It turns out the ' error message ' is related to the JSON gem, that Cucumber depends. The details and solution are buried in Thisthread.
To fix it, your just have to ru
My little brother was a beginner of Ruby, and I didn't use Linux.Search on the Internet a lot about the configuration of the development environment article, but always and actually a bit in and out, find n times the article, finally found the simplest environment installation configuration method, share the nextRecommended with Ubintu, feel for the habit of using Windows novice, still better operation.We use RVM to install the Management
Let's take a look at some tips for debugging this time.
First, and most importantly, writing test code, writing unit tests and functional tests in rails is simple, using them to reduce the rate of bugs, or to avoid bugs in your previous code.
The test code tells you what works and what doesn't, and the test code helps you isolate the problematic code, because sometimes the bug doesn't show up quickly.
If the problem occurs in a model, we can use th
A Brief Introduction to Ruby on Rails's support for PostgreSQL array types, railspostgresql
I am very happy to announce that Rails 4.0 now supports PostgreSQL array types. you can easily create fields of the array type through: array => true in migration. you can also add other options (length, default, and so on) when creating an array field)
create_table :table_with_arrays do |t| t.integer :int_array, :ar
Modify viewsModify the index view (app/views/posts/index.html.erb) and add the edit link as follows:That is, add the following logic: Among them, Edit_post_path, is the previous "[Ruby on Rails] and I learned route map" referred to the edit action prefix added a shortcut after the _path suffix, can accept parameters, here accept the post instance object.Then edit the view and copy the new view as an edit v
Using form to create data, this section will cover the content: Create form, redirect user, render views and flash messages.1. Views PreliminaryEdit App/views/posts/index.html.erb This view file as follows:New_post is the new action's prefix, referring to [Ruby on Rails] and I learned the route map, but after it added the _path suffix.Then edit the App/views/posts/new.html.erb view file as follows:2. Bindin
view is available, because it is just a simple test, the model does not add, just change the action to the corresponding model of the mail or other.
Next, configure the Gmail SMTP server in the Config/application.rb file, such as (because Gmail needs fq to test, so in real development, the configuration of the SMTP server for Gmail can be placed in the Production.rb file, In test.rb and development.rb files with other mailboxes instead, I use the QQ SMTP server, as long as the QQ in the SMTP
The previous "[Ruby on Rails] and I learned hello World" mentioned that the route corresponding to the file is CONFIG/ROUTES.RBIn fact, we just added a line of code: Resources:p OSTsHowever, this code has multiple default routes, which can be viewed through rake routes, as follows:[Email protected]:/home/ywt/ror_tests/blog# rake routes Prefix Verb URI Pattern controller#action Posts ge
First, the new projectRails new App--skip-bundleModify Gemfile file after completion: Vim GemfileChange source to Taobao or Ruby-china.Add to this file: Gem ' Phantomjs 'Then run: Bundle installSo the project is new and completed.Second, generate PDFCreate a controller to add require ' PHANTOMJS ' to the head and add a get method for getting the PDF: get_pdfAdd the following code to this method:Phantomjs.base_dir = "/path/project_name/bin/phantomjs/"
ActiveRecord programming guide in Ruby on Rails, rubyonrails
Avoid modifying the default ActiveRecord (Table Name, primary key, and so on) unless you have a very good reason (such as a database not under your control ).Put the macro-style method before the class definition (has_many, validates, and so on ).
Preference has_expect: through is better than has_and_belongs_to_expect. Has_validation: through allo
The following issues have been encountered recently in a ROR Web project:
Products can be classified by class navigation browsing, can be divided into three types of a,b,c, three categories under the other categories, at the same time, the base class and its classification can be extended by the user. Horizontally, the main class can be extended by the user, and the user can extend it vertically.
Category information Store and Categories table:
Id:integer PRIMARY Key
Name:string category Nam
Redis Store is a toolkit designed for Ruby applications that supports fragmentation, master-slave copying, marshalling, and timeouts and namespaces. In addition, it is also very easy to use on the Ruby on Rails.How to use:for using the Redis Store on rails, first we need to add a portal to the Gemfile file
Gem ' redis-
| format.html Format.json {render json: @alljson} #这里会自动调用to_json end #render Json:lsjson #render JSON: {test: 1} End Ruby calls in JSON formatFirst JSON format NOTE:1, after the nodes to follow:, can not have spaces2, nodes, name these places cannot be enclosed in quotation marks, otherwise you cannot use Ruby to convert to JSON format.Simple_json = {nodes: [{name: ' Bob ', Age: ' $ ', awesome: ' true '}
user model that contains first_name, last_name, nickname, where the nickname field is an array type. The following migration code creates the corresponding table:
Create_table:users do |t|
T.string:first_name
t.string:last_name
t.string:nicknames,: Array => true
end
And for this table, we have a simple model
Class User
We do not use the default value for the field, if we instance a user object, the code is like this.
John = User.create (: first_name => ' J
The essay briefly understands the use of rails ' test and test data, and this time to see how to add a test to a model for deletion and modification.
1. Or using the last written products_test.rb, modify the Test_turth method by the name Test_create and make the contents:
def test_create
assert_kind_of Product, @product
assert_equal 1, @product. ID
assert_equal "pragmatic Ver Sion control ", @product. Title
assert_equal" I to use version control ",
XXX, recently clumsy in writing an automated SVN update for the Web operations Small platform,This decision was implemented with rails 4.But because the textbooks on the Web are implemented in versions 3 or 2. So this time made a lot of detours, now summarized as follows:The relevant view code: This update of the SVN version of the command:" view full log " 'svnlog_out'"svnlog_out"> Related controller code:class Svnupdatecontroller Applicat
For example, if you have a users table, wait until the user ID array:Select ID from the users where age > 20;To implement the above SQL statements, there are several ways to do this in rails:
User.where (' Age > '). Select (: ID). Collect (:id)
User.where (' Age > '). Select (: ID). map (:id), select ID from ' Users ' where (age
User.where (' Age > '). Pluck (: ID), SELECT ' users '. ' ID ' from ' users ' where (age
The first t
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.