我在使用延遲作業時出現錯誤。作業加載失敗:不允許使用「@」作爲實例變量名稱
Job failed to load: `@' is not allowed as an instance variable name.
調用它在這裏:
report = Report.find(params[:id])
report.delay.record_fixing(report.records.where(found: nil, pending: nil))
redirect_to reports_path
和記錄固定是
def record_fixing(records)
records.search_fullcontact
end
方法'search_fullcontact'的粘貼代碼 – Abk
我得到同樣的問題,你有任何解決方案嗎? –
和完整的錯誤跟蹤。 – sevenseacat