0

因此,假设您正在尝试执行 jquery ajax 请求,例如:

$.ajax({
    ...
    url: http://other-website.com
    ...
})

我理解由于同源原则,这个请求会失败,因为这个URL是一个外域。

但是我听说它GetJSON()不遵守这个原则,并且可以使用 JSONP 和附加的 URL 向外部服务器发送异步获取请求。

我的问题是:是否可以使用GetJSON()从外部名称中检索所有 HTML 作为 JSON 对象中的单个字符串?如果默认情况下不这样做,有什么办法可以强制/欺骗它这样做吗?

4

3 回答 3

3

是的,您可以从远程位置请求 html,但是您必须使用代理才能这样做。一种公开可用的代理是 YQL。

http://jsfiddle.net/BKJWu/

var query = 'SELECT * FROM html WHERE url="http://mattgemmell.com/2008/12/08/what-have-you-tried/" and xpath="//h1" and class="entry-title"';
var url = "http://query.yahooapis.com/v1/public/yql?q=" + query + "&format=json&callback=??";


$.getJSON(url,function(data){
    alert(data.query.results.h1.content);
})

您当然可以在返回纯 html 而不是 json 的服务器上构建自己的。

于 2013-08-19T21:12:47.970 回答
1

答案是否定的,你不能欺骗它或强迫它从外部源加载 html。GetJSON 仅适用于提供 JSONP 的服务器,并且只能读取有效的 JSON 对象。

于 2013-08-19T20:43:48.343 回答
0

您可以使用 GetJSON 检索您有权访问的任何 JSON 对象。这是一个使用 Razor 和 MVC 控制器的示例。

jQuery 代码

$(function () {
            $.getJSON('@Url.Action("GetColorsJson", "Json")', function (jsonData) {
                var css = new customContentJs.css.apply(jsonData);
            });
        });

控制器代码

using System.Web.Mvc;
using DAL;
using Newtonsoft.Json;

    public class JsonController : Controller
    {
        private readonly CustomContentContext _db = new CustomContentContext();

        /// <summary>
        /// Return a json serialized object of user saved colors
        /// </summary>
        /// <returns></returns>
        public string GetColorsJson()
        {
            return JsonConvert.SerializeObject(_db.Site.Include("Colors"));
        }
    }
于 2013-08-19T20:33:03.743 回答