Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Modele w kontrolerach #247

Open
fr30 opened this issue Dec 5, 2018 · 1 comment
Open

Modele w kontrolerach #247

fr30 opened this issue Dec 5, 2018 · 1 comment

Comments

@fr30
Copy link

fr30 commented Dec 5, 2018

Dlaczego w TracksController przy próbie wywołania

screenshot 2018-12-05 at 15 48 01

obiekt @playlist_tracks jest typu nil w widoku Tracks? W routes.rb nie dodawałem żadnej ścieżki, czy problem leży w tym, że w danym kontrolerze nie możemy korzystać z innych modelów?

@MOlej
Copy link

MOlej commented Dec 5, 2018

Jak najbardziej możesz przekazywać kontrolerem inne modele. W kodzie, który wrzuciłeś kontroler przekaże wszystkie obiekty PlaylistTrack w zmiennej @playlist_track, ale po odpaleniu akcji TracksController#playlist_tracks i do odpowiedniego widoku (tutaj domyślnie byłby to widok w pliku app/views/tracks/playlist_tracks.html.erb).

Przykładowo:

class FoosController < ApplicationController
  def index
    @foo = Foo.all
    @bar = Bar.all
  end
end

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants