IT命中WebDAV AJAX库 - 如何在MS Word中打开多个文件?

时间:2016-05-26 17:30:04

标签: javascript ajax ithit-webdav-server ithit-ajax-file-browser

我们正在尝试使用IT Hit WebDAV AJAX Library(ITHitWebDAVClient.js),看看它是否可以通过一次调用甚至多次调用库来打开多个文件。

例如,MS Word支持使用以下参数使用File / Open从WebDab打开多个文件:

示例:

"http://192.168.1.110/webdav/doc1.docx" "http://192.168.1.110/webdav/doc2.docx"

截图: enter image description here

我们尝试使用ITHitWebDAVClient.js做同样的事情,做这样的事情:

ITHit.WebDAV.Client.DocManager.EditDocument("\"http://192.168.1.110/webdav/doc1.docx\" \"http://192.168.1.110/webdav/doc2.docx\"", "/", protocolInstallCallback);

,但无论我们怎么做,它似乎都不起作用。

按顺序打开文件,如下所示,也不起作用:

function edit() {
ITHit.WebDAV.Client.DocManager.EditDocument("http://192.168.1.110/webdav/doc1.docx ", "/", protocolInstallCallback);
            ITHit.WebDAV.Client.DocManager.EditDocument("http://192.168.1.110/webdav/doc2.docx ", "/", protocolInstallCallback);
        }

有任何想法如何解决这个问题?

1 个答案:

答案 0 :(得分:0)

使用ITHit.WebDAV.Client.DocManager.DavProtocolEditDocument

sDocumentUrls string 要打开以便从服务器进行编辑的文档URL的逗号分隔列表所有文档必须位于相同的安装URL(在sMountUrl参数中指定)下。必须是包含域名的完整URL。

** v3 Beta及更高版本仅支持该功能。