使用jquery从api获取json

时间:2012-09-04 02:46:58

标签: jquery ajax json api

我正试图用jquery从http://api.arbetsformedlingen.se/获取json,但是我无法让它工作! 我试了4个小时,现在我放弃了......

我想也许这是一个跨域问题所以我试过了 http://james.padolsey.com/javascript/cross-domain-requests-with-jquery/

并且还试图获取xml和使用它 http://www.fyneworks.com/jquery/xml-to-json/

但它没有奏效.. 我不想使用php-proxy方法来获取xml文件。

为什么我不能从api获取json文件? 每当我试图获取xml或json文件时,它都返回一个空页面。

这是一个例子

$(document).ready(function() {
// Checking if jQuery is working
console.log("jQuery running");
var myurl="http://api.arbetsformedlingen.se/platsannons/soklista/kommuner?lanid=10";
console.log(" call back url :"+ myurl);
$.ajax({
    url: myurl,
    type: 'Get',
    cache: false,
    contentType: 'application/json; charset=utf-8',
    dataType: 'json',
    success: function(json) {
     console.log(" reponse :"+ json);
                }  
            });         
});

0 个答案:

没有答案