1

我在我的媒体 API 中创建了一个调用来检索名为“产品名称”的“自定义视频字段”,但未能成功检索它。在我的产品名称列中只弹出未定义。我在下面的代码片段中使用了 ((n.customFields)?n.productname:'') 来拨打电话。

function buildMAinVideoList() {

//Wipe out the old results
$("#tbData").empty();

console.log(oCurrentMainVideoList);
oCurrentVideoList = oCurrentMainVideoList;
// Display video count
document.getElementById('divVideoCount').innerHTML = oCurrentMainVideoList.length + " videos";
document.getElementById('nameCol').innerHTML = "Video Name";
//document.getElementById('headTitle').innerHTML = title;
document.getElementById('tdMeta').style.display  = "block";
document.getElementById('checkToggle').style.display  = "inline";
$("span[name=buttonRow]").show();
$(":button[name=delFromPlstButton]").hide();


//For each retrieved video, add a row to the table
var modDate = new Date();
$.each(oCurrentMainVideoList, function(i,n){
    modDate.setTime(n.lastModifiedDate);
    $("#tbData").append(
        "<tr style=\"cursor:pointer;\" id=\""+(i)+"\"> \
        <td>\
            <input type=\"checkbox\" value=\""+(i)+"\" id=\""+(i)+"\" onclick=\"checkCheck()\">\
        </td><td>"
            +n.name +
        "</td><td>"
            +(modDate.getMonth()+1)+"/"+modDate.getDate()+"/"+modDate.getFullYear()+"\
        </td><td>"
            +((n.customFields)?n.productname:'')+
        "</td></tr>"
    ).children("tr").bind('click', function(){
        showMetaData(this.id);

        })
});

我在我的 getPlaylist 调用中进行了类似的调用,在调试器中它显示了自定义字段,所以我知道它在上面的代码中。

4

1 回答 1

1

您的自定义字段将作为 customFields 的子项返回。尝试:

(n.customFields && n.customFields.productname)?n.customFields.productname:''
于 2013-02-12T13:27:51.657 回答