考慮我的控制器名稱是Api_example,並且我擴展了REST_Controller。 現在我的困惑是codeigniter中restful api的方法名稱是什麼?
public function user_get(){
//Some code..
}
public function user_post(){
//Some code..
}
現在,我無法理解什麼是「用戶」在那種方法。如果我訪問user_get()
方法,如localhost/api_example/user/get
或localhost/api_example/user/post
只是顯示一些array
data
json
格式。它不工作。 請幫幫我。
感謝您的回答。但我想知道'user_get()'中的'user'這個前綴詞是什麼。我看過很多例子,但有人使用'index_get()/ index_post()'。 –
我編輯我的答案,我希望我幫你 –
我明白,直到你expalined,現在,如果我遵循該過程,我得到一個'未知方法'exceptionfor user_post()。我需要改變route.PHP中的任何內容嗎?現在我已經提到['api_example/user /(:any)'] = ['api_example/user_post']。但我不確定。 –