terminal
$ rails new (Nom du projet)
terminal
$ rails s -b 0.0.0.0
terminal
$ rails generate scaffold article content:string
terminal
$ rails db:migrate
terminal
$ rails generate controller welcome index
config/routes.rb
Rails.application.routes.draw do
get 'welcome/index'
resources :articles
root 'welcome#index'
# For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html
end
<%= link_to '(Texte du lien)',Adresse du lien(Dans les cas suivants, passez aux articles créés) %>
ruby:index.html.erb
<%= link_to 'Show list', articles_path %>
terminal
$ rails generate migration AdNameToArticle name:string
N'oubliez pas de migrer.
Vous pouvez exécuter le processus d'appel de données à partir de la colonne de nom en écrivant le code comme indiqué ci-dessous.
#### **`python`**
```ruby
<%= article.name %>
Recommended Posts