我们一直在使用gapi.drive.realtime.CollaborativeList来检测属性是否为CollaborativeList。这开始在上周失败,我们检查了gapi.drive.realtime,并且看起来没有出现CollabroativeList或文档中描述的任何其他模型。 https://developers.google.com/drive/realtime/reference/。我们仍然可以访问标准驱动器功能,因此它不会出现身份验证问题。并且调用该函数的函数包含在gapi.load(“drive-realtime”,function(){})中。有没有任何线索为什么模型不再存在?
gapi.load("drive-realtime", function() {
if("test" instanceof gapi.drive.realtime.CollaborativeList){
console.log("hi")
}
})
此函数将返回Uncaught TypeError:在instanceof check中期望一个函数,但是未定义
这是因为在gapi.drive.realtime中不存在gapi.drive.realtime.CollaborativeList
答案 0 :(得分:0)
请参阅Brian对此问题的回答:Was the Drive Realtime API changed today?通常没有理由访问构造函数,这样做可能会导致问题,因此访问权限已被删除。
您不知道它是否是合作清单的情况是什么?