更新
create操作,如下所示:
def create ... respond_to do |format| if @reservation.save format.html do redirect_to '/' end format.json { render json: @reservation.to_json } else format.html { render 'new'} ## Specify the format in which you are rendering "new" page format.json { render json: @reservation.errors } ## You might want to specify a json format as well end endend您正在使用
respond_to的方法,但ANOT指定 格式
,其中
new呈现页面。因此,错误
ActionController::UnknownFormat。



