我在使用 rails 时遇到问题,并在我每次请求 .json 扩展文件时将我注销。
例如 。我有一个表列表,每次我在浏览器中检查 /tables.json 时,它都会显示数据,但是当我返回根文件夹时,它会将我注销。
我不知道该怎么做才能完成这项工作。
这是我的表格索引控制器
def index
@table = current_user.seating.tables
respond_to do |format|
format.html
format.json { render :json => @table.to_json }
end
end