使用getDocumentByKey:'Undefined'不是函数

时间:2013-10-21 13:16:19

标签: dominotogo

我正在尝试使用getDocumentByUNID函数输入注释文档。运行以下代码剪切会输出错误:

    var unid = (function() {
        for (var x in e.row.children) {
            if (e.row.children[x].content == "id") {
                return e.row.children[x].text;
            }
        }
    })();

    if (!unid) {
        YN.exception("Function displayGeraet: Document ID could not be found!");
    } else {
        var Geraete_db  = app.notes_db_geraete;

        YN.log("Unid: "+unid);          //Output: Unid: 22EC92ED5AF33138C1257BA30053E753
        YN.log("URL: "+Geraete_db.baseURL);     //Output: URL: http://MT04.wd.isernhagen/HKMT/Ticket/Geraete.nsf

        var Geraete_doc = Geraete_db.getDocumentbyUNID(unid); //EXCEPTION: openGeraet, TypeError: 'undefined' is not a function (evaluating 'db.getDocumentbyUNID(unid)')

我缺少什么建议?

1 个答案:

答案 0 :(得分:0)

你有“Geraete_db.getDocumentByUNID(unid)”和大写的“By”或你的代码示例中的小写吗? 它应该是getDocumentByUNID()。