我正在通过 API 提取三个随机记录,并且我想确保所有记录都不相同。如何编辑我的代码以检查记录是否唯一?
这是我当前的代码:
$.ajax({
url: ajaxUrl,
type: "GET",
dataType: "json",
success: function (data) {
var person1 = data.records[1 + Math.floor(Math.random() * 9)];
var person2 = data.records[1 + Math.floor(Math.random() * 9)];
var person3 = data.records[1 + Math.floor(Math.random() * 9)];
$(".one").html(person1.name);
$(".two").html(person2.name);
$(".three").html(person3.name);
},
error: function () {
alert("boo!");
}
});
谢谢