0

我正在尝试使用 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)')

有什么我缺少的建议吗?

4

1 回答 1

0

你有“Geraete_db.getDocumentByUNID(unid)”,“By”是大写还是小写,就像你的代码示例一样?它应该是 getDocumentByUNID()。

于 2013-10-21T14:12:34.697 回答