這篇文章主要介紹“如何用FastAdmin插件添加API接口”,在日常操作中,相信很多人在如何用FastAdmin插件添加API接口問(wèn)題上存在疑惑,小編查閱了各式資料,整理出簡(jiǎn)單好用的操作方法,希望對(duì)大家解答”如何用FastAdmin插件添加API接口”的疑惑有所幫助!接下來(lái),請(qǐng)跟著小編一起來(lái)學(xué)習(xí)吧!
站在用戶的角度思考問(wèn)題,與客戶深入溝通,找到江岸網(wǎng)站設(shè)計(jì)與江岸網(wǎng)站推廣的解決方案,憑借多年的經(jīng)驗(yàn),讓設(shè)計(jì)與互聯(lián)網(wǎng)技術(shù)結(jié)合,創(chuàng)造個(gè)性化、用戶體驗(yàn)好的作品,建站類(lèi)型包括:成都網(wǎng)站設(shè)計(jì)、成都網(wǎng)站建設(shè)、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣、域名注冊(cè)、雅安服務(wù)器托管、企業(yè)郵箱。業(yè)務(wù)覆蓋江岸地區(qū)。
\addons\guestbook\controller
目錄下建立api
目錄(若插件只有api控制器,可以不建立,api目錄名稱自定義,此處以api
為目錄名舉例。)。
api
目錄內(nèi),建立Base.php
基類(lèi)文件:
// api基類(lèi) /addons/guestbook/controller/api/Base.php 文件
api
目錄建立接口類(lèi),此處以留言板
的接口為例// 留言接口類(lèi),可供小程序、app等使用 /addons/guestbook/controller/api/Guestbook.php 文件 request->isPost()) { $contact = $this->request->post('contact'); $title = $this->request->post('title'); $message = $this->request->post('message'); $token = $this->request->post('__token__'); $rule = [ 'contact' => 'require|length:3,30', 'title' => 'require|length:3,30', 'message' => 'require|length:3,255', '__token__' => 'require|token', ]; $msg = [ 'contact.require' => __('Contact information required'), 'contact.length' => __('Contact must be within 3 to 30 characters'), 'title.require' => __('Message subject required'), 'title.length' => __('Message subject must be within 3 to 30 characters'), 'message.require' => __('Message content required'), 'message.length' => __('Message content must be within 3 to 255 characters'), ]; $data = [ 'contact' => $contact, 'title' => $title, 'message' => $message, '__token__' => $token, ]; $validate = new Validate($rule, $msg); $result = $validate->check($data); if (!$result) { $this->error(__($validate->getError()), null, ['token' => $this->request->token()]); } // 留言入庫(kù) $data['user_id'] = $this->auth->isLogin() ? $this->auth->id : 0; $Msglog_model = new \app\admin\model\guestbook\Msglog; if ($Msglog_model->allowField(true)->save($data)){ $this->success(__('Message successfully')); } else { $this->error(__('Message failed')); } } } }
接口URL:http://您的域名/addons/guestbook/api.guestbook/index
方案二
利用
/application
文件夾中的所有文件
會(huì)在插件安裝時(shí)覆蓋到根目錄的/application
文件夾的原理,直接將我們的api控制器
文件覆蓋到FastAdmin的api
模塊。
\addons\guestbook\application
目錄下建立api
目錄,api
目錄下再建立controller
目錄。新建的
controller
目錄內(nèi),建立api控制器類(lèi)即可。接口URL:http://您的域名/api/控制器/方法
此方式
控制器文件
強(qiáng)烈建議以插件標(biāo)識(shí)為文件前綴,以免文件沖突。到此,關(guān)于“如何用FastAdmin插件添加API接口”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)?lái)更多實(shí)用的文章!
本文名稱:如何用FastAdmin插件添加API接口
文章位置:http://weahome.cn/article/iigdhh.html