我使用Padrino,我想從URL中提取參數並在.erb模板中使用它們。 在我的應用程序的設置,我有: get '/testpage/:id' do
userID = params[:id]
render 'test/index'
end
在我test/文件夾我有index.html.erb被渲染成功,對於像http://localhost:9000/testpage/h
我有一個新的Padrino 0.13.1項目,我在AWS Elastic Beanstalk工作者實例上託管。工作者實例有一個cron作業,每隔5分鐘在我的Padrino應用程序中調用POST。 post :myroutine, :with => :myparams, :csrf_protection => false do
# ... do some stuff
status
我使用Sequel與Padrino及以下遷移提出的uninitialized constant Jsonb (NameError)錯誤: Sequel.migration do
up do
alter_table :same_table do
add_column :not_working, Jsonb
end
end
end
的creat