当谈到 jQuery 时,我有点慢,因为我正试图在这种语言中站稳脚跟。我目前正在使用 FaceAPI,并且它运行良好。在识别阶段,我有一个返回信息数组的 Ajax 调用。
$.ajax({
url: 'http://api.face.com/faces/recognize.json?&uids=all&namespace=camera_app&detector=Aggressive&',
data: formdata,
cache: false,
contentType: false,
processData: false,
dataType:"json",
type: 'POST',
success: function (data) {
photo = data.photos[0];
handleResult(photo)
},
但我最感兴趣的是被称为 API 的“UID”将人的脸与他们的 UID 相匹配。我想知道的是,一旦返回 UID,可以放置时间戳并将其保存到我设置的数据库中吗?[旁注:用户照片仅提交给 API,我不会将它们保存在我的数据库中。我唯一要保存的是用户的名字/姓氏和 UID。] 我只是不知道时间戳函数如何与返回变量一起工作。
我希望以后能够在返回该信息时提取 UID 和时间戳匹配。
更新:
这是向用户显示 UID 和准确性(置信度)的位置:
function handleResult(photo) {
console.log(photo)
var s = "<h2 class='results'>Account Information:</h2>";
if(photo.tags.length) {
var tag = photo.tags[0].uids[0];
s += "<p>";
//$('#result') .html ('Welcome Back:' + photo.uid + ',' + 'Confidence:' + photo.confidence);
if(tag.uid) s += "<li> User:" + tag.uid + "</li>";
if(tag.uid) s += "<li> Accuracy:" + tag.confidence + "%" + "</li>";
if(tag.uid == 0) s += "I got something, but the data wasn't clear. Sorry.";
} else {
s += "<p>Sorry, I didn't find any faces.</p>";
}
$("#result").html(s);
在这个阶段,我想创建一个时间戳。
解决了:
function handleResult(photo) {
console.log(photo)
var s = "<h2 class='results'>Account Information:</h2>";
var month = new Date().getMonth() + 1;
var day = new Date().getDate();
var hours = new Date().getHours();
var min = new Date().getMinutes();
var suffix = "AM";
if (hours >= 12) {
suffix = "PM";
hours = hours - 12;
}
if (hours == 0) {
hours = 12;
}
if (min < 10)
min = "0" + min
if(photo.tags.length) {
var tag = photo.tags[0].uids[0];
s += "<p>";
//$('#result') .html ('Welcome Back:' + photo.uid + ',' + 'Confidence:' + photo.confidence);
if(tag.uid) s += "<li> User:" + tag.uid + "</li>";
if(tag.uid) s += "<li> Accuracy:" + tag.confidence + "%" + "</li>";
if(tag.uid) s += "<li> Timestamp:" + month + "/" + day + " " + hours + ":" + min + suffix + "</li>";
if(tag.uid == 0) s += "I got something, but the data wasn't clear. Sorry.";
} else {
s += "<p>Sorry, I didn't find any faces.</p>";
}
$("#result").html(s);