此示例正常(无参数):
JSONP sample on twitter
<html><head><title>Twitter 2.0</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
</head><body>
<div id='tweet-list'></div>
<script type="text/javascript">
$(document).ready(function() {
var url = "http://api.twitter.com/1/statuses/user_timeline/codinghorror.json";
$.getJSON(url + "?callback=?", null, function(tweets) {
for(i in tweets) {
tweet = tweets[i];
$("#tweet-list").append(tweet.text + "<hr />");
}
});
});
</script>
</body></html>
但它不适用于此网址:
var url = "https://thiswaschangedforsecurity/Rest/Authenticate/Login?username=jsm&password=a&ip=1";
此url在粘贴到url bar时返回json数据:
{"SessionID":"44e6f809-3b40-43fc-b425-069e9c52cbda","SourceIP":"1","UserID":313}
但我无法使用JSONP。有什么想法吗?
答案 0 :(得分:1)
要启用jsonp(导致跨域访问),应将其放在web.config文件中
<bindings>
<webHttpBinding>
<binding crossDomainScriptAccessEnabled="true">
....
</binding>
</webHttpBinding>
</bindings>
答案 1 :(得分:0)
这一行
$.getJSON(url + "?callback=?", null, function(tweets) {
正在追加?到你的网址时应该添加一个&amp;因为,在问题的情况下,你的网址已经有了?