2015-03-06 7 views
5

Nie można znaleźć działającej odpowiedzi na to. Jestem w rozdziale 10, sekcja 10.1.2 Tutorialu Rails i nie mogę sprawić, że podgląd mailera będzie działał. Wszystkie odpowiedzi, które znalazłem, dotyczące tego błędu, odnoszą się do różnych sekcji samouczka i zakładam, że błąd, który popełniam, patrzy mi w twarz. Przeszedłem i skopiowałem/wkleiłem kod z samouczka do odpowiednich plików i jak dotąd nie widziałem różnicy między tym, co napisałem, a tym, co było w samouczku. Do tej pory sugerowano dodanie lub usunięcie argumentu z definicji funkcji, ale to nie rozwiązało problemu. Adres URL powodujący błąd to http://localhost:3000/rails/mailers/user_mailer/account_activation. http://localhost:3000/rails/mailers/user_mailer/ nie powoduje problemów, a także nie jest http://localhost:3000/rails/mailers/user_mailer/password_reset (którego jeszcze nie dostosowałem). czego mi brakuje?NoMethodError in Rails :: MailersController # podgląd niezdefiniowanej metody `activation_token = 'dla zero: NilClass

Oto błąd:

NoMethodError in Rails::MailersController#preview 
    undefined method `activation_token=' for nil:NilClass 

Extracted źródło:

def account_activation 
    user = User.first 
    user.activation_token = User.new_token # highlighted line 
    UserMailer.account_activation(user) 
end 

Z tego co mogę powiedzieć, pliki zaangażowane są tu:

user_mailer.rb:

 class UserMailer < ApplicationMailer 

     # Subject can be set in your I18n file at config/locales/en.yml 
     # with the following lookup: 
     # 
     # en.user_mailer.account_activation.subject 
     # 
     def account_activation(user) 
     @user = user 
     mail to: user.email, subject: "Account activation" 
     end 

     def password_reset 
     @greeting = "Hi" 

     mail to: "[email protected]" 
     end 
    end 

user_mailer_prev iew.rb:

 # Preview all emails at http://localhost:3000/rails/mailers/user_mailer 
    class UserMailerPreview < ActionMailer::Preview 

     # Preview this email at http://localhost:3000/rails/mailers/user_mailer/account_activation 
     def account_activation 
     user = User.first 
     user.activation_token = User.new_token 
     UserMailer.account_activation(user) 
     end 

     # Preview this email at http://localhost:3000/rails/mailers/user_mailer/password_reset 
     def password_reset 
     UserMailer.password_reset 
     end 

    end 

development.rb:

Rails.application.configure do 

     config.cache_classes = false 

     # Do not eager load code on boot. 
     config.eager_load = false 

     # Show full error reports and disable caching. 
     config.consider_all_requests_local  = true 
     config.action_controller.perform_caching = false 

     # Don't care if the mailer can't send. 
     config.action_mailer.raise_delivery_errors = true 
     config.action_mailer.delivery_method = :test 
     host = 'localhost:3000' 
     config.action_mailer.default_url_options = { host: host } 

     # Print deprecation notices to the Rails logger. 
     config.active_support.deprecation = :log 

     # Raise an error on page load if there are pending migrations. 
     config.active_record.migration_error = :page_load 

     # Debug mode disables concatenation and preprocessing of assets. 
     # This option may cause significant delays in view rendering with a large 
     # number of complex assets. 
     config.assets.debug = true 

     # Asset digests allow you to set far-future HTTP expiration dates on all assets, 
     # yet still be able to expire them through the digest params. 
     config.assets.digest = true 

     # Adds additional error checking when serving assets at runtime. 
     # Checks for improperly declared sprockets dependencies. 
     # Raises helpful error messages. 
     config.assets.raise_runtime_errors = true 

     # Raises error for missing translations 
     # config.action_view.raise_on_missing_translations = true 
    end 

i kompletności, tutaj są poglądy i mój model użytkownik:

account_activation.html.erb:

<h1>Sample App</h1> 

    <p>Hi <%= @user.name %>,</p> 

    <p> 
    Welcome to the Sample App! Click on the link below to activate your account: 
    </p> 

    <%= link_to "Activate", edit_account_activation_url(@user.activation_token, 
                 email: @user.email) %> 

account_activation.text.erb: Witam <% = @ user.name%>,

Welcome to the Sample App. Click on the link below to activate your account: 

    <%= edit_account_activation_url(@user.activation_token, email: @user.email) %> 

user.rb:

class User < ActiveRecord::Base 
     attr_accessor :remember_token, :activation_token 
     before_save :downcase_email 
     before_create :create_activation_digest 
     validates :name, presence: true, length: { maximum: 50 } 
     VALID_EMAIL_REGEX = /\A[\w+\-.][email protected][a-z\d\-]+(\.[a-z\d\-]+)*\.[a-z]+\z/i 
     validates :email, presence: true, length: { maximum: 255 }, 
         format: { with: VALID_EMAIL_REGEX }, 
         uniqueness: { case_sensitive: false } 
     has_secure_password 
     validates :password, length: { minimum: 6 }, allow_blank: true 

     # Returns the hash digest of the given string. 
     def User.digest(string) 
     cost = ActiveModel::SecurePassword.min_cost ? BCrypt::Engine::MIN_COST : 
                 BCrypt::Engine.cost 
     BCrypt::Password.create(string, cost: cost) 
     end 

     # Returns a random token 
     def User.new_token 
     SecureRandom.urlsafe_base64 
     end 

     # Remembers a user in the database for use in persistent sessions 
     def remember 
     self.remember_token = User.new_token 
     update_attribute(:remember_digest, User.digest(remember_token)) 
     end 

     # Returns true if the given token matches the digest. 
     def authenticated?(remember_token) 
     return false if remember_digest.nil? 
     BCrypt::Password.new(remember_digest).is_password?(remember_token) 
     end 

     # Forgets a user. 
     def forget 
     update_attribute(:remember_digest, nil) 
     end 

     private 

     # Converts email to all lower-case. 
     def downcase_email 
      self.email = email.downcase 
     end 

     # Creates and assigns the activation token and digest. 
     def create_activation_digest 
      self.activation_token = User.new_token 
      self.activation_digest = User.digest(activation_token) 
     end 
    end 

Odpowiedz

5

Wow, z partii debugowania i zamieszania odkryć naprawdę prosty problem: I nie był zalogowany, i nie zdefiniowano jakiegokolwiek komunikatu o błędzie dla osoby próbujące uzyskać dostęp do tej strony, jeśli nie były zalogowane (stąd metoda user.activation_token wyzwalająca błąd Nil:NilClass). Wygląda na to, że TDD może pomóc tony.

3

Nie jestem pewien, czy problem z zalogowaniem był problemem, ale raczej nie było użytkowników.

Czy uruchomiłeś bundle exec rake db:seed, aby wypełnić? Również w czeku konsoli aby sprawdzić, czy baza danych wypełniane zgodnie z oczekiwaniami ... jeśli nie ma kasy swój „seed.rb” pliku w sekcji, gdzie użytkownicy są tworzone zapewnić activated: true istnieje, jak następuje:

User.create!(name: "Example User", 
      email: "[email protected]", 
      password: "foobar", 
      password_confirmation: "foobar", 
      admin: true, 
     ** activated: true, 
      activated_at: Time.zone.now) 

powyższy błąd, 'activation_token=' for nil:NilClass wydaje się być, ponieważ nie było żadnych użytkowników.

I chociaż wspomniałeś, że jesteś "zalogowany", być może właśnie dokonałeś ponownej rejestracji, tworząc w ten sposób użytkownika potrzebnego do uruchomienia tej funkcji. Mam nadzieję że to pomoże!

0

Jeśli jest to ten sam błąd co ja, twoja baza danych nie ma danych i użytkownika. Najpierw pobierz NIL niż następny wiersz. sprawdź swój plik źródłowy, a Ty db.

Powiązane problemy