Ruby/ROR は初めてで、何かと混乱しています。簡単な説明が役に立ちます。
Ruby on Rails の別のページにリンクしていたとします。キーワード
link_to
はメソッドと見なされますか? また、もしそうなら、どこでこれらについてもっと学ぶことができますか?シンボル。左にコロンがあるシンボルと右にコロンがあるシンボルの違いは何ですか? これらについてどこで詳しく知ることができますか?
Ruby/ROR は初めてで、何かと混乱しています。簡単な説明が役に立ちます。
Ruby on Rails の別のページにリンクしていたとします。キーワードlink_to
はメソッドと見なされますか? また、もしそうなら、どこでこれらについてもっと学ぶことができますか?
シンボル。左にコロンがあるシンボルと右にコロンがあるシンボルの違いは何ですか? これらについてどこで詳しく知ることができますか?
You could use Google, e.g. https://www.google.de/search?q=rails+link_to. The link_to
method is, well, a method which is defined by Rails and is not a Ruby keyword.
Symbols are different from Strings. In Ruby code, they are always written with a colon on the left. An "exception" of this rule is when it is used in a Hash using the new json-like Hash syntax from Ruby 1.9, where {foo: "bar"}
is equivalent to {:foo => "bar"}
Which variant you use is up to you, they are 100% equivalent.
Generally, it is probably a good idea to first read an introductional book about both Ruby and Rails or take an online-course, e.g. http://ruby.railstutorial.org/ for learning Rails or http://rubykoans.com/ for learning Ruby.