-
Notifications
You must be signed in to change notification settings - Fork 8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Jsonp Support to Context #1333
Conversation
Codecov Report
@@ Coverage Diff @@
## master #1333 +/- ##
==========================================
- Coverage 98.41% 98.26% -0.16%
==========================================
Files 34 34
Lines 1772 1790 +18
==========================================
+ Hits 1744 1759 +15
- Misses 23 25 +2
- Partials 5 6 +1
Continue to review full report at Codecov.
|
@@ -861,6 +861,28 @@ func main() { | |||
r.Run(":8080") | |||
} | |||
``` | |||
#### JSONP |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you also add one line at top of API Examples section
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok, I have added documentation.
(cherry picked from commit 8c24018)
Jsonp is common format in json to o request data from servers in different domains,
I added Jsonp's data return format.