1

「製品名」という「カスタム ビデオ フィールド」を取得するための呼び出しを 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 呼び出しで同様の呼び出しを行い、デバッガーでカスタム フィールドを表示するので、上記のコードにあることがわかります。

4

1 に答える 1

1

カスタム フィールドは、customFields の子として返されます。試す:

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