您好我正在疯狂地寻找解决方案将近2天。我有上传多个word文档的sharepoint库。使用javascript JSZip我想将sharepoint文件网址传递给它。这可能吗?
我通过ecmascript获取每个文件服务器的相对URL。现在我想做这样的事情:
function create_zip() {
debugger
var zip = new JSZip();
zip.add("http://myspsite/shareddoc/a/test.docx", "\n"); //this is hardcoded for testing??here I have file url
//zip.add("hello2.txt", "Hello Second World\n");
content = zip.generate();
location.href = "data:application/zip;base64," + content;
}
任何指针或我如何从这里开始? Thanxs。
答案 0 :(得分:0)
这是疯狂但有趣的。可以工作。创建一个按钮并调用库和脚本,我很确定。
或者,试试这个:http://techtrainingnotes.blogspot.com.ar/2010/05/sharepoint-2010-windows-explorer-view.html
这更简单。