• JSONP

    JSONP

    使用 JSONP 向不同域的服务器请求数据。如果查询参数存在回调,则将回调添加到响应体中。

    1. func main() {
    2. r := gin.Default()
    3. r.GET("/JSONP?callback=x", func(c *gin.Context) {
    4. data := map[string]interface{}{
    5. "foo": "bar",
    6. }
    7. // callback 是 x
    8. // 将输出:x({\"foo\":\"bar\"})
    9. c.JSONP(http.StatusOK, data)
    10. })
    11. // 监听并在 0.0.0.0:8080 上启动服务
    12. r.Run(":8080")
    13. }