這篇文章給大家分享的是有關thinkphp5.1和php、vue.js實現(xiàn)前后端分離和交互的方的內(nèi)容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
讓客戶滿意是我們工作的目標,不斷超越客戶的期望值來自于我們對這個行業(yè)的熱愛。我們立志把好的技術通過有效、簡單的方式提供給客戶,將通過不懈努力成為客戶在信息化領域值得信任、有價值的長期合作伙伴,公司提供的服務項目有:域名注冊、網(wǎng)絡空間、營銷軟件、網(wǎng)站建設、太平網(wǎng)站維護、網(wǎng)站推廣。主要目標是使用vue.js把前端獲取的賬號和密碼傳到后臺,然后使用tp5.1框架獲取前端的值,并返回token等一些值。然后使用localStorage.setItem()把數(shù)據(jù)存入前端。在之后的訪問中,把localStorage.setItem()保存的值返回到后臺,使后臺獲取相應的值,并根據(jù)這個值獲取數(shù)據(jù)庫的值,并判斷這個值是否成立,最后把成功或者失敗的指令或者值返回到前端。前端根據(jù)獲得的值實現(xiàn)某項操作,或者跳轉(zhuǎn)。
1.準備工作,在前端login.html調(diào)用vue.js和axios.js。這里還調(diào)用了餓了嗎的一些簡單ui的使用。
<script src="https://cdn.staticfile.org/vue/2.4.2/vue.min.js"></script>//vue.js的使用 <script src="https://unpkg.com/axios/dist/axios.min.js"></script>//axios的使用 <link rel="stylesheet" href="https://unpkg.com/element-ui/lib/theme-chalk/index.css"> <script src="https://unpkg.com/element-ui/lib/index.js"></script>//餓了嗎ui js和css的調(diào)用。
vue.js和axios.js的詳細使用。詳細可看https://cn.vuejs.org/v2/guide/ vue.js教程和https://www.kancloud.cn/yunye/axios/234845
axios.js的教程。前端login.html傳值代碼如下:
<script>//返回信息到前端 const app = new Vue({ el: '#app',//對應使用id="app"獲取信息。 data() { return { admin: "", password: "", dd:"",//定義是三個變量初始化都為空可在id="app"的頁面編寫{{admin}}返回admin的值 } }, methods: {//參數(shù)的傳遞 login: function () { var $this = this; console.log("登錄觸發(fā)");//打印返回 axios({ method: 'post', url: 'http://127.0.0.1/xiangbb/tp5/public/user', data: { admin: this.admin, password: this.password } })//使用axios根據(jù)地址把data的數(shù)組值根據(jù)post進行傳輸,this.admin和this.password是定義<input v-model="admin">獲取 .then(function (response) {//成功400或401 執(zhí)行。 //$this.dd = response.data;//獲取后臺數(shù)據(jù) //console.log(response.data.access_token); localStorage.setItem('token', response.data.access_token);//本地存儲token值 window.location.href="../index/index.html";//跳轉(zhuǎn)頁面 }) .catch(function (error) { $this.$message.error('賬號或密碼錯誤!');//失敗,出現(xiàn)錯誤,返回彈窗 console.log(error); }); } }, mounted() {//在模板渲染成html后調(diào)用,這里未使用,配套的created在模板渲染成html前調(diào)用 } }) </script>
還需設置config配置文件 app.php
'default_return_type' => 'json',
在database.php連接數(shù)據(jù)庫
下面是后臺獲取數(shù)據(jù),對數(shù)據(jù)進行操作。這里面主要使用了tp5.1的請求和模型,還有就是對jwt的使用,詳細看https://github.com/firebase/php-jwt
<?php namespace app\index\controller;//表示放置位置 use think\Controller;//控制器基類 use \Firebase\JWT\JWT;//調(diào)用庫 jwt 類 use think\Request;//請求對象類 use app\common\model\User as Muser;//模型 class User extends Controller { public function user() { //echo $_COOKIE["user"];//前端傳參到這里 $admin=input('post.admin'); $password=input('post.password');//獲取前端 $user=db('user')->where('admin',$admin)->where('password',$password)->find();//刪選 //\dump($user); if($user)//使用jwt方法 { $key = \config("app.jwt_key");//key值,保密,在config的app下的jwt_key $token = array( "iss" => "http://127.0.0.1/xiangbb/tp5/public/user",// 簽發(fā)地址 "aud" => "http://127.0.0.1/xiangbb/qian/login/login.html#",//面向?qū)ο蟮刂? "iat" => time(),//創(chuàng)建時間 "nbf" => time(),//生效時間 'exp' => time() + 3600, //過期時間-10min 'sub' => $user['id'],//傳遞的id值 ); $jwt = JWT::encode($token, $key);//加密 //$decoded = JWT::decode($jwt, $key, array('HS256'));//解密 return [ "access_token" => $jwt,//加密數(shù)據(jù) "token_type" => "Bearer",//類別 "expires_in" => 3600,// 過期時間 ];//返回數(shù)組 } return response()->code(401);//如找不到 返回401指令 } }
后臺User.php根據(jù)獲取的數(shù)據(jù)跟數(shù)據(jù)庫進行比對,但賬號密碼正確時,返回一串帶有那個賬戶的id和別的數(shù)據(jù)返回到前端,前端保存該值,并使用該值獲取該用戶的相應數(shù)據(jù)并顯示在前端。一樣,把那幾個js調(diào)用,然后js代碼如下:
<script> const app = new Vue({ el: '#app', data() { return { token: "", http: {}, } }, methods: { }, created() { this.token = localStorage.getItem('token');//在登錄頁面驗證成功而保存的token值,進行獲取 this.http = axios.create({//整理token的值 baseURL: 'http://127.0.0.1/xiangbb/tp5/public/', timeout: 5000, headers: {'Authorization': "Bearer "+this.token} }); if(!this.token)//若this.token不存在時返回登錄頁面 { window.location.href="../login/login.html"; } else { this.http.get('/user')//調(diào)用上面的http,把值傳回后臺 .then(function (response) { console.log(response); }) .catch(function (error) {//token錯誤返回登錄頁面 window.location.href="../login/login.html"; console.log(error); }); } } }) </script>
路由route.php接收,并跳轉(zhuǎn)到中間件,對傳遞的值進行驗證,以此判斷是否進入控制器,進行以后的操作,使用中間件,方便以后判定不需要在控制器每個函數(shù)上都寫上方法。
Route::rule('user','index/user/show','GET')->middleware('verify_user');//路由接收,跳轉(zhuǎn)中間件判斷
中間件VerifyUser.php代碼如下:
<?php namespace app\http\middleware;//文件位置 use think\Request;//請求 use \Firebase\JWT\JWT;//jwt use app\common\model\User;//模型 class VerifyUser { public function handle(Request $request, \Closure $next)//使用模型 { $Authorization = $request->header('Authorization');//獲取前端傳遞的值 if(!isset($Authorization)) return response()->code(401);//檢測變量是否存在,不存在返回401 $key =\config("app.jwt_key");//key值 定義在config下的app的jwt_key $token_type = \explode(" ",$Authorization)[0];//根據(jù)空格隔開獲取第零個字符串 $token = \explode(" ",$Authorization)[1];//根據(jù)空格隔開獲取第一個字符串 if($token_type == 'Bearer')//判斷$token_type是否正確 { try { $decoded = JWT::decode($token, $key, array('HS256'));//解密 $request->user = $user = User::get($decoded->sub);//獲取解密后的用戶id if(!$user||$decoded->exp<time())//如果id不存在或者時間超出,返回401 return response()->code(401); }catch(\Exception $e) { //捕獲異常,返回401,可能解密失敗,$e可返回失敗原因 return response()->code(401); } } else {//$token_type錯誤也返回401 return response()->code(401); } return $next($request);//當沒有執(zhí)行401時,執(zhí)行到下一個請求,可能有多個中間件或者路由。 } }
當中間件執(zhí)行完,則跳轉(zhuǎn)到控制器User.php
public function show(Request $request)//請求,依賴注入 { $user = Muser::get($request->user['id']);// 模型,獲取數(shù)據(jù)庫id相同的表數(shù)據(jù),默認表名為Muser的原名 User return $user;//返回對應數(shù)據(jù) }
感謝各位的閱讀!關于“thinkphp5.1和php、vue.js實現(xiàn)前后端分離和交互的方”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
新聞名稱:thinkphp5.1和php、vue.js實現(xiàn)前后端分離和交互的方-創(chuàng)新互聯(lián)
本文網(wǎng)址:http://vcdvsql.cn/article30/csipso.html
成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供商城網(wǎng)站、網(wǎng)站制作、網(wǎng)站建設、網(wǎng)站改版、微信公眾號、網(wǎng)站內(nèi)鏈
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)