-
```
I really should have some simple examples in the library demonstrating JSON
string and JSONP loading.
```
Original issue reported on code.google.com by `nick.rab...@gmail.com` on 10 Jun 2010 at…
-
When allow_jsonp = true is specified in the .ini file, jsonp responses should return with MIME type but it's being set to text/plain instead.
-
Pretty much directly from one of your README examples, I have this code which is not working as expected:
```
ajax({
url: url,
type: "jsonp"
//,success: function(){alert("success");}
})
/…
-
```
script.type = 'text/javascript'
script.src = url
script.async = true
if (typeof script.onreadystatechange !== 'undefined' && !isIE10) {
// need this for IE due…
-
This code would be a lot cleaner if loggly supported jsonp. That way there wouldn't have to be a "janky" cross domain iframe injected into the page.
thoughts?
-
I captured some errors in the error handling callback:Uncaught (in promise) Error: JSONP request failed.;2. WebSocket connection to 'wss://api.livechatinc.com/v3.5/customer/rtm/ws?organization_id=XXXX…
-
function historicaldatacontroller in showhidecontroller.js has what i believe to be a valid jsonp request but i get a 404 in the console. thoughts?
-
Json.success is somewhat limited, as in it only allows requests for direct ajax requests not JSONP.
-
So, currently if a GET request fails we try w/ JSONP - all well and good except, we're trying w/ an ajax service that doesn't exist:
https://github.com/ArcGIS/ember-arcgis-server-services/blob/05e3…
-
前天的文章 [放开你的思路](https://github.com/lifesinger/lifesinger.github.com/issues/117),微信和微博上得到了不少回复,陈皓也提到可以进一步探讨 JS API 的设计。API 的设计是一个很大的话题,今天延续前天的文章,仅聊聊 JSONP 的设计。
JSONP 是 JSON With Padding 的缩写。一个典型的 JSO…