真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

vue模仿網(wǎng)易云音樂的單頁面應(yīng)用-創(chuàng)新互聯(lián)

說明

成都創(chuàng)新互聯(lián)專注于企業(yè)網(wǎng)絡(luò)營銷推廣、網(wǎng)站重做改版、三元網(wǎng)站定制設(shè)計(jì)、自適應(yīng)品牌網(wǎng)站建設(shè)、H5場景定制、商城網(wǎng)站定制開發(fā)、集團(tuán)公司官網(wǎng)建設(shè)、外貿(mào)網(wǎng)站建設(shè)、高端網(wǎng)站制作、響應(yīng)式網(wǎng)頁設(shè)計(jì)等建站業(yè)務(wù),價(jià)格優(yōu)惠性價(jià)比高,為三元等各大城市提供網(wǎng)站開發(fā)制作服務(wù)。

一直想做一個(gè)基于VUE的項(xiàng)目,但是因?yàn)轫?xiàng)目往往要涉及到后端的知識(shí)(不會(huì)后端真的苦),所以就沒有一直真正的動(dòng)手去做一個(gè)項(xiàng)目。

直到發(fā)現(xiàn)GitHub上有網(wǎng)易云音樂的api NeteaseCloudMusicApi ,才開始動(dòng)手去做。

僅僅完成了首頁,登入,歌單,歌曲列表頁。

項(xiàng)目地址

https://github.com/qp97vi/music


項(xiàng)目成功運(yùn)行還要把后端api在本地運(yùn)行

前端技術(shù)棧

vue2+vuex+vue-router+axios+mint-ui+webpack

遇到的問題

1.前端路由攔截

想做一個(gè)登錄攔截,驗(yàn)證沒有登錄之前,就跳轉(zhuǎn)到登錄頁面

解決方法是:通過http response 攔截器判斷token(本地的cookie)判斷

創(chuàng)建一個(gè)http.js

import axios from 'axios'
import store from './store/store'
import * as types from './store/types'
import router from './router/index'

// axios 配置
axios.defaults.timeout = 5000
axios.defaults.baseURL = 'https://api.github.com'

// http request 攔截器
axios.interceptors.request.use(
 config => {
  if (store.state.xsrfCookieName) {
   config.headers.Authorization = `xsrfCookieName ${store.state.xsrfCookieName}`
  }
  return config
 },
 err => {
  return Promise.reject(err)
 },
)

// http response 攔截器
axios.interceptors.response.use(
 response => {
  return response
 },
 error => {
  if (error.response) {
   switch (error.response.status) {
    case 401:
     // 401 清除token信息并跳轉(zhuǎn)到登錄頁面
     store.commit(types.LOGOUT)
     
     // 只有在當(dāng)前路由不是登錄頁面才跳轉(zhuǎn)
     router.currentRoute.path !== 'login' &&
      router.replace({
       path: 'login',
       query: { redirect: router.currentRoute.path },
      })
   }
  }
  // console.log(JSON.stringify(error));//console : Error: Request failed with status code 402
  return Promise.reject(error.response.data)
 },
)

export default axios

名稱欄目:vue模仿網(wǎng)易云音樂的單頁面應(yīng)用-創(chuàng)新互聯(lián)
文章鏈接:http://weahome.cn/article/docicp.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部