在brightcove中获取自定义视频字段

时间:2013-02-11 22:25:04

标签: video custom-fields brightcove

我在我的Media 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调用中进行了类似的调用,在调试器中它显示了自定义字段,所以我知道它在上面的代码中。

1 个答案:

答案 0 :(得分:1)

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

(n.customFields && n.customFields.productname)?n.customFields.productname:''