zoukankan      html  css  js  c++  java
  • ECMA 上传文件到SHarePoint 文档库

    <script src="http://jqueryjs.googlecode.com/files/jquery-1.3.2.min.js" type="text/javascript"></script><script type="text/javascript">
        function uploadFile() {
            var filePath = "c:\test.pdf";
            var soapEnv =
            "<soap:Envelope xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:soap='http://schemas.xmlsoap.org/soap/envelope/'> 
                <soap:Body>
                    <CopyIntoItems xmlns='http://schemas.microsoft.com/sharepoint/soap/'>
                        <SourceUrl>" + filePath + "</SourceUrl>
                            <DestinationUrls>
                                <string>http://ghy/Shared Documents/test.pdf</string>
                            </DestinationUrls>
                            <Fields>
                                <FieldInformation Type='Text' DisplayName='Title' InternalName='Title' Value='Test' />
                            </Fields>
                        <Stream>base64Binary</Stream>
                    </CopyIntoItems>
                </soap:Body>
            </soap:Envelope>";
            $.ajax({
                url: "http://sharepointsite/_vti_bin/copy.asmx",
                beforeSend: function (xhr) { xhr.setRequestHeader("SOAPAction", "http://schemas.microsoft.com/sharepoint/soap/CopyIntoItems"); },
                type: "POST",
                dataType: "xml",
                data: soapEnv,
                complete: processResult,
                contentType: "text/xml; charset="utf-8""
            });
        }
        function processResult(xData, status) {
            alert("Uploaded SuccessFully");
        }</script><input name="Upload" onclick="uploadFile()" type="button" value="Upload"/> 
  • 相关阅读:
    【mybatis】IF判断的坑
    QCheckBox控件
    对话框——文件对话框
    对话框——颜色对话框
    对话框——输入对话框
    事件和信号
    布局管理——复习示例
    布局管理——网格布局
    布局管理——盒式布局
    1.4 控制流
  • 原文地址:https://www.cnblogs.com/ahghy/p/3149373.html
Copyright © 2011-2022 走看看