1. 程式人生 > >Referer與圖片防盜鏈

Referer與圖片防盜鏈

1,axios用法   轉自 https://www.cnblogs.com/wisewrong/p/6402183.html 

方案一:改寫原型鏈

首先在 main.js 中引入 axios

import axios from 'axios'

這時候如果在其它的元件中,是無法使用 axios 命令的。但如果將 axios 改寫為 Vue 的原型屬性,就能解決這個問題

Vue.prototype.$ajax = axios

在 main.js 中添加了這兩行程式碼之後,就能直接在元件的 methods 中使用 $ajax 命令

複製程式碼
methods: {
  submitForm () {
    this.$ajax({
      method: 'post',
      url: '/user',
      data: {
        name: 'wise',
        info: 'wrong'
      }
   })
}
複製程式碼


方案二:在 Vuex 中封裝

之前的文章中用到過 Vuex 的 mutations,從結果上看,mutations 類似於事件,用於提交 Vuex 中的狀態 state

action 和 mutations 也很類似,主要的區別在於,action 可以包含非同步操作,而且可以通過 action 來提交 mutations

另外還有一個重要的區別:

mutations 有一個固有引數 state,接收的是 Vuex 中的 state 物件

action 也有一個固有引數 context,但是 context 是 state 的父級,包含  state、getters

 

Vuex 的倉庫是 store.js,將 axios 引入,並在 action 新增新的方法

複製程式碼
// store.js
import Vue from 'Vue' import Vuex from 'vuex' // 引入 axios import axios from 'axios' Vue.use(Vuex) const store
= new Vuex.Store({ // 定義狀態 state: { test01: { name: 'Wise Wrong' }, test02: { tell: '12312345678' } }, actions: { // 封裝一個 ajax 方法 saveForm (context) { axios({ method: 'post', url: '/user', data: context.state.test02 }) } } }) export default store
複製程式碼

注意:即使已經在 main.js 中引入了 axios,並改寫了原型鏈,也無法在 store.js 中直接使用 $ajax 命令

換言之,這兩種方案是相互獨立的

 

在元件中傳送請求的時候,需要使用 this.$store.dispatch 來分發

methods: {
  submitForm () {
    this.$store.dispatch('saveForm')
  }
}

submitForm 是繫結在元件上的一個方法,將觸發 saveForm,從而通過 axios 向伺服器傳送請求


附錄:配置 axios 

上面封裝的方法中,使用了 axios 的三個配置項,實際上只有 url 是必須的,完整的 api 可以參考使用說明

為了方便,axios 還為每種方法起了別名,比如上面的 saveForm 方法等價於:

axios.post('/user', context.state.test02)

完整的請求還應當包括 .then 和 .catch

.then(function(res){
  console.log(res)
})
.catch(function(err){
  console.log(err)
})

當請求成功時,會執行 .then,否則執行 .catch

這兩個回撥函式都有各自獨立的作用域,如果直接在裡面訪問 this,無法訪問到 Vue 例項

這時只要新增一個 .bind(this) 就能解決這個問題

.then(function(res){
  console.log(this.data)
}.bind(this))


axios不支援vue.use()方式宣告使用,看了所有近乎相同的axios文件都沒有提到這一點 

https://blog.csdn.net/u012369271/article/details/72848102

建議方式

在main.js中如下宣告使用
import axios from 'axios';
Vue.prototype.$axios=axios;
那麼在其他vue元件中就可以this.$axios呼叫使用

-------------------->>>>>>>

2018.4.8   遇到的問題


mounted() { // mounted 是建立完了之後,進行的資料掛載 ,資料繫結之類的 // axios.get('/static/test.json').then(function(rsp) this.$axios.get( 'https://news-at.zhihu.com/api/4/news/latest').then( function(rsp){ console.log(rsp.data); }).catch((error) => { console.log(error); }) }

出現報錯

Failed to load https://news-at.zhihu.com/api/4/news/latest: No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://127.0.0.1:8088' is therefore not allowed access.

換成了另一個託管的網址後,https://zhihu-daily.leanapp.cn/api/v1/last-stories

就可以了,猜測問題在於知乎日報做了防跨域訪問設定


跟著學習的視訊,作者在後面給了新的辦法,然後換了網址就可以訪問了


1,裝allow-control-allow-origin:* 外掛,允許跨域操作

2,在index.html寫 <meta name="referrer" content="never"> 不許被追蹤

這句話應對知乎的漏洞,可以隱藏自己的地址,然後就可以不被追蹤到,

防盜鏈設定     ----- 

Referer與圖片防盜鏈

https://blog.csdn.net/baochao95/article/details/52673314 

使用 Referer Meta 標籤控制 referer—詳解 referrer-policy

  http://blog.sina.com.cn/s/blog_9080de950102w2mk.html