繁体   English   中英

使用 forEach 在 Json 数据上使用 jquery 的随机循环

[英]random loop with jquery on Json data using forEach

我有这段代码,它显示了 json 文件中的所有图像。 有什么方法可以仅显示 1 张图像并随机显示.json 中的图像?

我有这个代码:

 $(document).ready(function() { $.getJSON('https://res.cloudinary.com/dkx20emez/image/list/dom.json', function(emp) { //the attribute resource is an array so you have to loop each element in it emp.resources.forEach(function(element){ var publicid = element.public_id; var format = element.format; var type = element.type; var version = element.version; $('#display').append('<img class="wrapper" src="https://res.cloudinary.com/dkx20emez/image/'+ type +'/v'+version +'/'+publicid+'.'+format +'">'); }); }); });
 **css** body { padding: 50px; }.wrapper { width: 200px; height: auto; padding: 10px; background: #eee; }.random-faces { width: 100%; max-width: 200px; height: 0; padding-bottom: 100%; background-repeat: no-repeat; background-position: center center; background-size: cover; }
 //css <html><head> <script src= "https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"> </script></head> <body> <div class="wrapper" id="display" style="background-color:#39B54A;"></div> </body> </html>

我感谢你的回答

您可以在 0 和返回数组的长度 -1 之间生成一个随机 integer。 我在这篇文章中包含了一个执行此操作的简单方法:

在 JavaScript 中的两个数字之间生成随机数

然后您可以使用该随机 integer 作为emp.resources的索引来获取随机图像。

请参见下面的片段:

(曾经知道的jQuery大部分都忘记了,所以混入了Vanilla JS)

 // Custom function to get a random integer between two numbers const randomIntFromInterval = (min, max) => Math.floor(Math.random() * (max - min + 1) + min); $(document).ready(function() { $.getJSON('https://res.cloudinary.com/dkx20emez/image/list/dom.json', function(emp) { //Get a random number between 0 and the length of the emp.resources array - 1 var index = randomIntFromInterval(0, emp.resources.length - 1) // Then just use that random number as the index of the array var element = emp.resources[index] var publicid = element.public_id; var format = element.format; var type = element.type; var version = element.version; //Create an img element const img = document.createElement(`img`); //Add in the class to the img img.classList.add(`wrapper`); //Add in the source to the img img.src = `https://res.cloudinary.com/dkx20emez/image/${type}/v${version}/${publicid}.${format}`; $('#display').append(img); }); });
 body { padding: 5px; }.wrapper { width: 200px; height: auto; padding: 10px; background: #eee; }.random-faces { width: 100%; max-width: 200px; height: 0; padding-bottom: 100%; background-repeat: no-repeat; background-position: center center; background-size: cover; }
 <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <div class="wrapper" id="display" style="background-color:#39B54A;"></div>

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM