私の問題はほんのわずかです。
私の問題は、States Controllerでは、国がデータベースに存在しないことです。
しかし、リモートではrails c
、Countryは機能します。国と国家との関係は機能します。逆もまた同様で、どちらも両方について多くの情報を持っています。
戦場(SFW):
class Admin::StatesController < Admin::ResourceController
#belongs_to :country
# ^^ This default line with spree will break the app because once this controller is touched, Country is nil in this part of the app.
before_filter :load_data, :except => [:index]
def index
#@country = Country.first
#@country ||= Country.find_by_iso("US")
# ^ Does not work because no countries are in the database from the app. Even though countries are accessible in rails console.
@trip = "yes"
@users = User.all
@countries = Country.all
# ^^ Country as a class exists but it is not populated in this part of the app.
したがって、このコントローラーコードを使用して、これをビューにスローすると、次のことがわかります。
- の値
@trip
。これは、コントローラーがデータを送信できることを意味します。 - @usersの値。これは、データベースが機能していることを意味します。すべてのユーザーとそのメールを一覧表示できます
- 記載されている国は1つもありません。それらのどれも表示されません。しかし、繰り返しになりますが、cをコンソールに接続してこれを試してみると、正常に機能します。アメリカ合衆国には51の州があります。そして、彼ら全員が完全な愛国的な結婚生活で彼らの国に呼び戻します。
誰かがここで起こっていることから頭や尾を作ることができますか?