上述问题 - 我正在尝试创建一个新的预订,该预订在开发中运行良好,但是登台服务器上的相同代码给了我:
ActionView::MissingTemplatebooking_system/bookings#new
Missing template booking_system/bookings/new, booking_system/base/new, inherited_resources/base/new, application/new with {:locale=>[:en], :formats=>[:html].....
我可以看到它正在尝试在继承的资源文件夹中查找模板,但没有找到...我已经用谷歌搜索了,但找不到任何有类似问题的人。如果需要,我的控制器代码:
module BookingSystem
class BaseController < InheritedResources::Base
end
end
module BookingSystem
class BookingsController < BaseController
authorize_resource
end
end
任何帮助是极大的赞赏