佳木斯湛栽影视文化发展公司

主頁 > 知識庫 > golang實現(xiàn)跨域訪問的方法

golang實現(xiàn)跨域訪問的方法

熱門標簽:服務外包 鐵路電話系統(tǒng) AI電銷 呼叫中心市場需求 Linux服務器 百度競價排名 網(wǎng)站排名優(yōu)化 地方門戶網(wǎng)站

前端通過Ajax來獲取服務器資源時,會存在跨域問題。因為Ajax只能同源使用(預防某些惡意行為),所以當訪問不在同一個域中的資源時,就會出現(xiàn)跨域限制。尤其在開發(fā)和測試時,跨域問題會給前端測試帶來非常不便。

不過CORS(Cross-Origin Resource Sharing,跨域資源共享)解決了這個問題,它背后的基本思想是:使用自定義的HTTP頭部讓瀏覽器與服務器進行溝通,從而決定請求或響應是否應該成功。CORS需要瀏覽器和服務器同時支持。整個CORS通信過程,瀏覽器是自動完成,而服務器需要手動配置。

ajax.html

!doctype html>
html lang="en">
head>
  meta charset="UTF-8">
  meta name="viewport"
     content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
  meta http-equiv="X-UA-Compatible" content="ie=edge">
  script>
    function loadXMLDoc() {
      var xmlhttp;
      if (window.XMLHttpRequest) {
        xmlhttp = new XMLHttpRequest();
      }
      else {
        xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
      }
      xmlhttp.onreadystatechange = function () {
        if (xmlhttp.readyState == 4  xmlhttp.status == 200) {
          document.getElementById("myDiv").innerHTML = xmlhttp.responseText;
        }
      }
      xmlhttp.open("GET", "http://127.0.0.1:8000/ajax", true);
      xmlhttp.send();
    }
  /script>
  title>Document/title>
/head>
body>
  h2>cross origin/h2>
  button type="button" onclick="loadXMLDoc()">請求數(shù)據(jù)/button>
  div id="myDiv">/div>
/body>
/html>

crossorigin.go

package main

import (
  "net/http"
  "html/template"
  "fmt"
  "encoding/json"
)

type Message struct {
  Name string `json:"name"`
  Msg string `json:"msg"`
}

func main() {
  http.HandleFunc("/", Entrance)
  http.HandleFunc("/ajax", TestCrossOrigin)
  http.ListenAndServe(":8000", nil)
}

func Entrance(w http.ResponseWriter, r *http.Request) {
  t,_:=template.ParseFiles("templates/ajax.html")
  t.Execute(w, nil)
}

func TestCrossOrigin(w http.ResponseWriter, r *http.Request) {
  if r.Method == "GET" {
    var message Message
    message.Name = "benben_2015"
    message.Msg = "success"

    result, err := json.Marshal(message)
    if err != nil {
      fmt.Println(err)
      return
    }
    ResponseWithOrigin(w, r, http.StatusOK, result)
    return
  }
}
func ResponseWithOrigin(w http.ResponseWriter, r *http.Request, code int, json []byte) {
  w.Header().Set("Content-Type", "application/json; charset=utf-8")
  w.WriteHeader(code)
  w.Write(json)
}

當從 http://localhost:8000/ 頁面(ajax.html)通過ajax訪問 http://localhost:8000/ajax 時,就會出現(xiàn)下圖所示的錯誤:

 

解決方法: golang設置HTTP頭部相當簡單,標準包有現(xiàn)成的方法可以使用。只要在服務器端的響應頭中添加下面一句代碼就可以正常訪問了。

w.Header().Set("Access-Control-Allow-Origin", "*")
//"*"表示接受任意域名的請求,這個值也可以根據(jù)自己需要,設置成不同域名

以上就是本文的全部內(nèi)容,希望對大家的學習有所幫助,也希望大家多多支持腳本之家。

標簽:崇左 湘潭 銅川 衡水 仙桃 湖南 黃山 蘭州

巨人網(wǎng)絡通訊聲明:本文標題《golang實現(xiàn)跨域訪問的方法》,本文關鍵詞  ;如發(fā)現(xiàn)本文內(nèi)容存在版權問題,煩請?zhí)峁┫嚓P信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡,涉及言論、版權與本站無關。
  • 相關文章
  • 收縮
    • 微信客服
    • 微信二維碼
    • 電話咨詢

    • 400-1100-266
    沈阳市| 蓝田县| 武隆县| 久治县| 颍上县| 广州市| 南雄市| 怀柔区| 通海县| 大同县| 遂溪县| 克山县| 高尔夫| 娄底市| 彩票| 九龙县| 溧水县| 邵阳市| 理塘县| 财经| 柞水县| 吴旗县| 克东县| 吉林市| 阿瓦提县| 张家港市| 清水河县| 无锡市| 安图县| 金昌市| 松潘县| 宁海县| 图片| 武陟县| 新疆| 禄丰县| 高安市| 广汉市| 杂多县| 西乌| 麻阳|