javascript 用于CORS请求的jQuery.ajax()方法的Flickr API请求

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript 用于CORS请求的jQuery.ajax()方法的Flickr API请求相关的知识,希望对你有一定的参考价值。

// jshint esversion: 8
// Important: update all http:// schemas to https://

let jsonFlickrFeed = response => {
  //test: extract an image from the response
  //console.log(response.items[0].media.m);
  response.items.forEach(function(item, index) {
    //Flickr returns 20 images by default
    //We need only six images for the Gallery
    if (index < 6) {
      // create a new JQuery element to hold the image
      // but hide it so we can fade it in
      let $img = $("<img>").hide();

      // set the attribute to the url
      // contained in the response
      $img.attr("src", item.media.m);
      $img.attr("width", "115");

      // attach the img tag to the main
      // photos element and then fade it in
      $(".photos").append($img);
      $img.fadeIn();
    } //if
  }); //foreach
}; //jsonFlickrFeed

let clickHandler = function() {
  //get tag entered by user
  let tagVal = $("input").val();
  //insert the tag into the URL
  let requestURL =
    "https://api.flickr.com/services/feeds/photos_public.gne?tags=" +
    tagVal +
    "&format=json&callback=jsonFlickrFeed";
  console.log(requestURL);
  $(".b").html(""); //clear box b
  //$.getJSON(requestURL, function(response) {
  $.ajax({
    dataType: "jsonp",
    url: requestURL,
    crossDomain: true,
    jsonp: "jsonFlickrFeed"
  });
  //.done();
};

$(document).ready(() => {
  $("button").on("click", clickHandler);
  $("input[type=text]").on("keypress", () => {
    //return key pressed?
    if (event.keyCode === 13) {
      clickHandler();
    }
  });
});

以上是关于javascript 用于CORS请求的jQuery.ajax()方法的Flickr API请求的主要内容,如果未能解决你的问题,请参考以下文章

如何使用“no-cors”将 JavaScript HTTP 发布请求代码更改为 C#?

javascript [在服务器上启用CORS]允许服务器请求CORS #javascript #node #cors

使用 Ajax/Javascript/Django 的 CORS 请求

Javascript CORS JSON/JSONP 请求

MooTools CORS 请求与原生 Javascript

Javascript API GET请求CORS错误