Google Drive API中的修订总数

时间:2018-09-01 03:24:43

标签: javascript arrays node.js google-api google-drive-api

我正试图从Google api获取修订的总数,但我真的不知道问题出在哪里。我尝试使用.length()或。(size)但不能。

基于google网站上的列表中的总对象,但我仍然无法获取数据。

Please see the image

FILE_COUNTER = $(this).attr("data-file-counter");
            $("#transparent-wrapper").show();
            $("#float-box-info").show();
            if (DRIVE_FILES[FILE_COUNTER] != null) {
                var createdDate = new Date(DRIVE_FILES[FILE_COUNTER].createdDate);
                var modifiedDate = new Date(DRIVE_FILES[FILE_COUNTER].modifiedDate);
                var revision = (DRIVE_FILES[FILE_COUNTER].revisions)
                $("#spanCreatedDate").html(createdDate.toString("dddd, d MMMM yyyy h:mm:ss tt"));
                $("#spanModifiedDate").html(modifiedDate.toString("dddd, d MMMM yyyy h:mm:ss tt"));
                $("#spanOwner").html((DRIVE_FILES[FILE_COUNTER].owners[0].displayName.length > 0) ? DRIVE_FILES[FILE_COUNTER].owners[0].displayName : "");
                $("#spanTitle").html(DRIVE_FILES[FILE_COUNTER].title);
                $("#spanSize").html((DRIVE_FILES[FILE_COUNTER].fileSize == null) ? "N/A" : formatBytes(DRIVE_FILES[FILE_COUNTER].fileSize));
                $("#spanExtension").html(DRIVE_FILES[FILE_COUNTER].revisions);
                console.log("1cL9DguLfyVX_o-Dc5pk5FniueeeIzdDBD6sZl_5CKY4".revisions)
            }

希望有人帮助我

0 个答案:

没有答案