0
誰能給我一個教程鏈接或爲這個開始的問題一步步:IOS POST請求到Rails Web服務:一步一步
在軌,爲用戶的資源,我有
def create
@user = User.new(params[:user])
respond_to do |format|
if @user.save
format.html { redirect_to @user, notice: 'User was successfully created.' }
format.json { render json: @user, status: :created, location: @user }
else
format.html { render action: "new" }
format.json { render json: @user.errors, status: :unprocessable_entity }
end
end
結束
我怎麼能做一個帖子/用戶創建一個新的用戶沒有第三API的SDK?
謝謝
可能的重複[開發一個ios客戶端應用程序爲rails webservice](http://stackoverflow.com/questions/15732972/develop-a-ios-client-app-for-rails-webservice) – Till
你應該真的不應該再次提出同樣的問題。如果您認爲編輯原始問題會增加其價值,請繼續操作。 – Till