如何将我的本地javascript变量设置为远程网站上的json数据

时间:2012-02-19 11:40:52

标签: javascript json

我的网站上有一个javascript代码,有一个变量:

var remoteJsonVar;

另一方面,远程网站上有一个json文件

https://graph.facebook.com/?ids=http://www.stackoverflow.com

我需要将变量 remoteJsonVar 设置为此远程jason数据。

我确信这很简单,但我找不到解决方案。

一个小的工作示例会很好。

1 个答案:

答案 0 :(得分:6)

因为您尝试从不同的获取数据,如果您想完全在客户端执行此操作,则使用JSON-P而不仅仅是JSON,因为Same Origin Policy。如果您只是在查询字符串中添加callback参数,Facebook支持此功能,例如:

https://graph.facebook.com/?ids=http://www.stackoverflow.com?callback=foo

然后在脚本中定义一个函数(在全局范围内),该函数具有您在callback参数中给出的名称,如下所示:

function foo(data) {
    remoteJsonVar = data;
}

您可以通过创建script元素并将src设置为所需的网址来触发它,例如:

var script = document.createElement('script');
script.src = "https://graph.facebook.com/?ids=http://www.stackoverflow.com?callback=foo";
document.documentElement.appendChild(script);

请注意,对您的函数的调用将是异步

现在,既然您可能希望有多个未完成的请求,并且您可能不希望在完成后留下该回调,您可能希望更复杂并创建随机回调姓名等。这是一个完整的例子:

Live copy | Live source

(function() {

  // Your variable; if you prefer, it could be a global,
  // but I try to avoid globals where I can
  var responseJsonVar;

  // Hook up the button
  hookEvent(document.getElementById("theButton"),
            "click",
            function() {
      var callbackName, script;

      // Get a random name for our callback
      callbackName = "foo" + new Date().getTime() + Math.floor(Math.random() * 10000);

      // Create it
      window[callbackName] = function(data) {
          responseJsonVar = data;
          display("Got the data, <code>shares = " +
            data["http://www.stackoverflow.com"].shares +
            "</code>");

          // Remove our callback (`delete` with `window` properties
          // fails on some versions of IE, so we fall back to setting
          // the property to `undefined` if that happens)
          try {
              delete window[callbackName];
          }
          catch (e) {
              window[callbackName] = undefined;
          }
      }

      // Do the JSONP request
      script = document.createElement('script');
      script.src = "https://graph.facebook.com/?ids=http://www.stackoverflow.com&callback=" + callbackName;
      document.documentElement.appendChild(script);
      display("Request started");
  });

  // === Basic utility functions

  function display(msg) {
    var p = document.createElement('p');
    p.innerHTML = msg;
    document.body.appendChild(p);
  }

  function hookEvent(element, eventName, handler) {
    // Very quick-and-dirty, recommend using a proper library,
    // this is just for the purposes of the example.
    if (typeof element.addEventListener !== "undefined") {
      element.addEventListener(eventName, handler, false);
    }
    else if (typeof element.attachEvent !== "undefined") {
      element.attachEvent("on" + eventName, function(event) {
        return handler(event || window.event);
      });
    }
    else {
      throw "Browser not supported.";
    }
  }
})();

请注意,当您使用JSONP时,您会在另一端对该网站充满信任。从技术上讲,JSONP根本不是JSON,它为远程站点提供了在页面上运行代码的机会。如果你相信另一端,那很好,但只要记住滥用的可能性。

您还没有提到使用任何库,所以我没有使用任何库,但我建议您查看一个好的JavaScript库,如jQueryPrototypeYUIClosureany of several others。上面的很多代码已经为你编写了一个很好的库。例如,以上是使用jQuery:

Live copy | Live source

jQuery(function($) {

  // Your variable
  var responseJsonVar;

  $("#theButton").click(function() {
    display("Sending request");
    $.get("https://graph.facebook.com/?ids=http://www.stackoverflow.com&callback=?",
          function(data) {
            responseJsonVar = data;
            display("Got the data, <code>shares = " +
              data["http://www.stackoverflow.com"].shares +
              "</code>");
          },
          "jsonp");
  });

  function display(msg) {
    $("<p>").html(msg).appendTo(document.body);
  }
});