search

Home  >  Q&A  >  body text

html - 求教 用javascript请求百度API

接口地址 :http://apis.baidu.com/txapi/d...
请求方法 :GET
请求参数(header) :
apikey: "您自己的APIkey"

这是百度一个API请求的格式要求
下面是我写的请求

function clickButton(){
  $.ajax({
    url: "http://apis.baidu.com/txapi/dictum/dictum",
    type:'GET',
    data: {
      header: {
        apikey:"847dc263c57e01777dae47dac857dd87"
      }    
    },
    success: function(response) {
      var r = JSON.parse(response);
      document.getElementById("quote-word").innerHTML=r.quote;
    }   
  });
};
'''

可是不知道为啥,请求就是不成功,求教各位。。
谢谢大家
怪我咯怪我咯2822 days ago593

reply all(1)I'll reply

  • 高洛峰

    高洛峰2017-04-11 11:49:59

    function clickButton() {
      $.ajax({
        url: "http://apis.baidu.com/txapi/dictum/dictum",
        type: 'GET',
        headers: {
          'apikey': '847dc263c57e01777dae47dac857dd87'
        },
        success: function(response) {
          var r = JSON.parse(response);
          document.getElementById("quote-word").innerHTML=r.quote;
        },
        error: function(response) {
          alert(JSON.stringify(response));
        }
      });
    }

    reply
    0
  • Cancelreply