mirror of
https://github.com/labstack/echo.git
synced 2025-02-05 13:15:02 +02:00
0176385654
Signed-off-by: Vishal Rana <vr@labstack.com>
28 lines
447 B
Markdown
28 lines
447 B
Markdown
---
|
|
title: JSONP
|
|
menu:
|
|
side:
|
|
parent: recipes
|
|
weight: 6
|
|
---
|
|
|
|
JSONP is a method that allows cross-domain server calls. You can read more about it at the JSON versus JSONP Tutorial.
|
|
|
|
### Server
|
|
|
|
`server.go`
|
|
|
|
{{< embed "jsonp/server.go" >}}
|
|
|
|
### Client
|
|
|
|
`index.html`
|
|
|
|
{{< embed "jsonp/public/index.html" >}}
|
|
|
|
### Maintainers
|
|
|
|
- [willf](https://github.com/willf)
|
|
|
|
### [Source Code](https://github.com/labstack/echo/blob/master/recipes/jsonp)
|