RESTful JSON request
PHP Codeigniter側でバックボーン同期(別名)をどのように処理する必要がありますか?
マニュアルにはRubyの例がありますが、Rubyが誰かに翻訳できるかもしれません。
def update
account = Account.find params[:id]
account.update_attributes params
render :json => account
end
RESTful JSON request
PHP Codeigniter側でバックボーン同期(別名)をどのように処理する必要がありますか?
マニュアルにはRubyの例がありますが、Rubyが誰かに翻訳できるかもしれません。
def update
account = Account.find params[:id]
account.update_attributes params
render :json => account
end
個人的には使用していませんが、Phil Sturgeon のRESTful サーバー for CodeIgniterをチェックしてみてください。