首頁 > 軟體

django+vue實現跨域的範例程式碼

2022-03-03 19:02:00

版本

Django 2.2.3
Python 3.8.8
djangorestframework 3.13.1
django-cors-headers 3.11.0

django實現跨域

說明:此處方法為後端解決跨越,即django端解決跨越。

1. 安裝 django-cors-headers

pip install django-cors-headers

2. 修改專案組態檔 專案/settings.py

...
# Application definition
INSTALLED_APPS = [
    'django.contrib.staticfiles',

    'corsheaders',  # 新增:跨域元件
    'rest_framework',  # 新增:DRF框架
    'home',  # 子應用
]
MIDDLEWARE = [
    'corsheaders.middleware.CorsMiddleware',  # 新增:放首行(放其他行未測試)
    'django.middleware.security.SecurityMiddleware',
    ...
# CORS組的設定資訊
CORS_ORIGIN_WHITELIST = (
    'http://127.0.0.1:8080',
    # 這裡需要注意: 1. 必須新增http://否則報錯(https未測試) 2. 此地址就是允許跨域的地址,即前端地址
)
CORS_ALLOW_CREDENTIALS = True  # 允許ajax跨域請求時攜帶cookie

至此django端設定完畢

3. 前端vue使用axios存取後端django提供的資料介面,安裝axios

npm install axios -S

4. 前端vue設定axios外掛,修改src/main.js

...
import axios from 'axios';  // 新增: 匯入axios包

// axios.defaults.withCredentials = true;  // 允許ajax傳送請求時附帶cookie
Vue.prototype.$axios = axios; // 把物件掛載vue中
···

5. 在XX.vue中跨域請求資料

···
    created: function() {
      // 獲取輪播圖
      this.$axios.get("http://127.0.0.1:8000/book/").then(response => {
        console.log(response.data)
        this.banner_list = response.data
      }).catch(response => {
        console.log(response)
      })
     // http://127.0.0.1:8000/book/ 這個就是後端django介面
···

程式碼

<template>
  <div class="div1">
      <el-carousel trigger="click" height="600px">
        <el-carousel-item v-for="book in book_list" :key="book.index">
          <a :href="book.link" rel="external nofollow" >
            <img width="80%" :src="book.image" alt="">
          </a>
        </el-carousel-item>
      </el-carousel>
  </div>
</template>

<script>
  export default {
    name:"Book",
    data(){
      return {
        book_list:[]
      };
    },
    created: function() {
      // 獲取輪播圖
      this.$axios.get("http://127.0.0.1:8000/book/").then(response => {
        console.log(response.data)
        this.book_list = response.data
      }).catch(response => {
        console.log(response)
      })
    }
  }
</script>
<style>
.div1 {
  margin-top: 100px;
  height: 1000px
}
img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
</style>

到此這篇關於django+vue實現跨域的文章就介紹到這了,更多相關django vue跨域內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com