這篇文章主要介紹thinkphp5.0如何搭建restful風格接口層,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
成都一家集口碑和實力的網(wǎng)站建設服務商,擁有專業(yè)的企業(yè)建站團隊和靠譜的建站技術,10年企業(yè)及個人網(wǎng)站建設經(jīng)驗 ,為成都上1000+客戶提供網(wǎng)頁設計制作,網(wǎng)站開發(fā),企業(yè)網(wǎng)站制作建設等服務,包括成都營銷型網(wǎng)站建設,品牌網(wǎng)站建設,同時也為不同行業(yè)的客戶提供做網(wǎng)站、網(wǎng)站建設的服務,包括成都電商型網(wǎng)站制作建設,裝修行業(yè)網(wǎng)站制作建設,傳統(tǒng)機械行業(yè)網(wǎng)站建設,傳統(tǒng)農(nóng)業(yè)行業(yè)網(wǎng)站制作建設。在成都做網(wǎng)站,選網(wǎng)站制作建設服務商就選成都創(chuàng)新互聯(lián)。
下面是基于ThinkPHP V5.0 RC4框架,以restful風格完成的新聞查詢(get)、新聞增加(post)、新聞修改(put)、新聞刪除(delete)等server接口層。
1、下載ThinkPHP V5.0 RC4版本;
2、配置虛擬域名(非必須,只是為了方便);
Apache\conf\extra\httpd-vhosts.conf
DocumentRoot "D:/webroot/tp5/public" ServerName www.tp5-restful.com DirectoryIndex index.html index.php AllowOverride All Order deny,allow Allow from all
3、開啟偽靜態(tài)支持.htaccess文件
apache方法:
a)在conf目錄下httpd.conf中找到下面這行并去掉#
LoadModule rewrite_module modules/mod_rewrite.so
b)將所有AllowOverride None改成AllowOverride All
public\.htaccess文件內(nèi)容:
Options +FollowSymlinks -Multiviews RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1]
4、創(chuàng)建測試數(shù)據(jù)
tprestful.sql
-- -- 數(shù)據(jù)庫: `tprestful` -- -- -------------------------------------------------------- -- -- 表的結(jié)構(gòu) `news` -- CREATE TABLE IF NOT EXISTS `news` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `title` varchar(255) NOT NULL, `content` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='新聞表' AUTO_INCREMENT=1; -- -- 轉(zhuǎn)存表中的數(shù)據(jù) `news` -- INSERT INTO `news` (`id`, `title`, `content`) VALUES (1, '新聞1', '新聞1內(nèi)容'), (2, '新聞2', '新聞2內(nèi)容'), (3, '新聞3', '新聞3內(nèi)容'), (4, '房價又漲了', '據(jù)新華社消息:上海均價環(huán)比上漲5%');
5、修改數(shù)據(jù)庫配置文件
application\database.php
'MySQL', // 服務器地址 'hostname' => '127.0.0.1', // 數(shù)據(jù)庫名 'database' => 'tprestful', // 用戶名 'username' => 'root', // 密碼 'password' => '123456', // 端口 'hostport' => '', // 連接dsn 'dsn' => '', // 數(shù)據(jù)庫連接參數(shù) 'params' => [], // 數(shù)據(jù)庫編碼默認采用utf8 'charset' => 'utf8', // 數(shù)據(jù)庫表前綴 'prefix' => '', // 數(shù)據(jù)庫調(diào)試模式 'debug' => true, // 數(shù)據(jù)庫部署方式:0 集中式(單一服務器),1 分布式(主從服務器) 'deploy' => 0, // 數(shù)據(jù)庫讀寫是否分離 主從式有效 'rw_separate' => false, // 讀寫分離后 主服務器數(shù)量 'master_num' => 1, // 指定從服務器序號 'slave_no' => '', // 是否嚴格檢查字段是否存在 'fields_strict' => true, // 數(shù)據(jù)集返回類型 array 數(shù)組 collection Collection對象 'resultset_type' => 'array', // 是否自動寫入時間戳字段 'auto_timestamp' => false, // 是否需要進行SQL性能分析 'sql_explain' => false, ];
6、定義restful風格的路由規(guī)則,
application\route.php
7、新建模型
application\index\model\News.php8、新建控制器
application\index\controller\News.phpmethod){ case 'get': //查詢 $this->read($id); break; case 'post': //新增 $this->add(); break; case 'put': //修改 $this->update($id); break; case 'delete': //刪除 $this->delete($id); break; } } public function read($id){ $model = model('News'); //$data = $model::get($id)->getData(); //$model = new NewsModel(); $data=$model->where('id', $id)->find();// 查詢單個數(shù)據(jù) return json($data); } public function add(){ $model = model('News'); $param=Request::instance()->param();//獲取當前請求的所有變量(經(jīng)過過濾) if($model->save($param)){ return json(["status"=>1]); }else{ return json(["status"=>0]); } } public function update($id){ $model = model('News'); $param=Request::instance()->param(); if($model->where("id",$id)->update($param)){ return json(["status"=>1]); }else{ return json(["status"=>0]); } } public function delete($id){ $model = model('News'); $rs=$model::get($id)->delete(); if($rs){ return json(["status"=>1]); }else{ return json(["status"=>0]); } } }9、測試
a)、訪問入口文件,默認在public\index.phpb)、客戶端測試restful的get、post、put、delete方法
client\client.php
'房價又漲了', 'content' => '據(jù)新華社消息:上海均價環(huán)比上漲5%' ); $api_url = 'http://www.tp5-restful.com/news/4'; $rest = new restClient($api_url, $param, 'get'); $info = $rest->doRequest(); //$status = $rest->status;//獲取curl中的狀態(tài)信息 $api_url = 'http://www.tp5-restful.com/news'; $rest = new restClient($api_url, $param, 'post'); $info = $rest->doRequest(); $api_url = 'http://www.tp5-restful.com/news/4'; $rest = new restClient($api_url, $param, 'put'); $info = $rest->doRequest(); echo ''; print_r($info);exit; $api_url = 'http://www.tp5-restful.com/news/4'; $rest = new restClient($api_url, $param, 'delete'); $info = $rest->doRequest(); ?>請求工具類
client\ApiClient.phprequestType = strtolower($requestType); $paramUrl = ''; // PATHINFO模式 if (!empty($data)) { foreach ($data as $key => $value) { $paramUrl.= $key . '=' . $value.'&'; } $url = $url .'?'. $paramUrl; } //初始化類中的數(shù)據(jù) $this->url = $url; $this->data = $data; try{ if(!$this->curl = curl_init()){ throw new Exception('curl初始化錯誤:'); }; }catch (Exception $e){ echo ''; print_r($e->getMessage()); echo ''; } curl_setopt($this->curl, CURLOPT_URL, $this->url); curl_setopt($this->curl, CURLOPT_RETURNTRANSFER, 1); //curl_setopt($this->curl, CURLOPT_HEADER, 1); } /** * [_post 設置get請求的參數(shù)] * @return [type] [description] */ public function _get() { } /** * [_post 設置post請求的參數(shù)] * post 新增資源 * @return [type] [description] */ public function _post() { curl_setopt($this->curl, CURLOPT_POST, 1); curl_setopt($this->curl, CURLOPT_POSTFIELDS, $this->data); } /** * [_put 設置put請求] * put 更新資源 * @return [type] [description] */ public function _put() { curl_setopt($this->curl, CURLOPT_CUSTOMREQUEST, 'PUT'); } /** * [_delete 刪除資源] * delete 刪除資源 * @return [type] [description] */ public function _delete() { curl_setopt($this->curl, CURLOPT_CUSTOMREQUEST, 'DELETE'); } /** * [doRequest 執(zhí)行發(fā)送請求] * @return [type] [description] */ public function doRequest() { //發(fā)送給服務端驗證信息 if((null !== self::token) && self::token){ $this->headers = array( 'Client-Token:'.self::token,//此處不能用下劃線 'Client-Code:'.$this->setAuthorization() ); } //發(fā)送頭部信息 $this->setHeader(); //發(fā)送請求方式 switch ($this->requestType) { case 'post': $this->_post(); break; case 'put': $this->_put(); break; case 'delete': $this->_delete(); break; default: curl_setopt($this->curl, CURLOPT_HTTPGET, TRUE); break; } //執(zhí)行curl請求 $info = curl_exec($this->curl); //獲取curl執(zhí)行狀態(tài)信息 $this->status = $this->getInfo(); return $info; } /** * 設置發(fā)送的頭部信息 */ private function setHeader(){ curl_setopt($this->curl, CURLOPT_HTTPHEADER, $this->headers); } /** * 生成授權(quán)碼 * @return string 授權(quán)碼 */ private function setAuthorization(){ $authorization = md5(substr(md5(self::token), 8, 24).self::token); return $authorization; } /** * 獲取curl中的狀態(tài)信息 */ public function getInfo(){ return curl_getinfo($this->curl); } /** * 關閉curl連接 */ public function __destruct(){ curl_close($this->curl); } }以上是“thinkphp5.0如何搭建restful風格接口層”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關知識,歡迎關注創(chuàng)新互聯(lián)行業(yè)資訊頻道!
分享名稱:thinkphp5.0如何搭建restful風格接口層
文章起源:http://weahome.cn/article/pdeosi.html