我可以在一些沙盒WebPart
中为Sharepoint
在线制作上传文件表格,如果可以,我该怎么办?
我经常搜索并发现只有解决方案,可用于外部客户端的客户端对象模型,没有示例如何使用JSOM(Javascript的客户端对象模型)和通常的方式上传{{ 1}}不能在沙盒解决方案中工作,PostedFile length = 0
答案 0 :(得分:1)
您可以选择使用ActiveX STSUpld.UploadCtl控件 - 这使您可以像在文档库中看到的那样提供多文件上载。
请注意,在下面 - 必须设置确认URL(上传完成后的位置),并且必须将目标设置为现有文档库。
<script type="text/jscript">
function DocumentUpload() {
var uploadCtl = document.getElementById("idUploadCtl");
uploadCtl.MultipleUpload();
}
</script>
<input type='hidden' name='Confirmation-URL' id='Confirmation-URL' value='' />
<input type='hidden' name='PostURL' id='PostURL' value='' />
<input type="hidden" name="Cmd" value="Save" />
<input type="hidden" name="putopts" value="true" /> <!-- Overwrite files -->
<input type="hidden" name="VTI-GROUP" value="0" />
<input type="hidden" name="destination" id="destination" value="/TestDL" /> <!-- Files destination path, must already exist -->
<p style="margin-left:auto;margin-right:auto;margin-top:0px;margin-bottom:0px;text-align:center;padding:0px !important; vertical-align:top;width:100%;">
<script type="text/javascript">
try {
if (new ActiveXObject("STSUpld.UploadCtl"))
document.write("<OBJECT id=\"idUploadCtl\" name=\"idUploadCtl\" CLASSID=\"CLSID:07B06095-5687-4d13-9E32-12B4259C9813\" WIDTH=\"600px\" HEIGHT=\"250px\" ></OBJECT>");
}
catch (error) {
}
</script>
<asp:Button runat="server" accesskey="O" id="OKButton" CssClass="ms-ButtonHeightWidth" OnPropertyChange="if (this.value != 'Upload files') this.click();" Text="Upload files" UseSubmitBehavior="False" OnClientClick="DocumentUpload(); return false;" />
<asp:Button runat="server" accesskey="C" id="CancelButton" CssClass="ms-ButtonHeightWidth" Text="Cancel" UseSubmitBehavior="False" OnClientClick="window.location ='<somewhere to go>'; return false;" />
希望这会有所帮助......
答案 1 :(得分:0)
没有太多选项,但请查看CodePlex上的SPServices - 这将是最好的起点。请记住 - SharePoint在调用服务时需要二进制对象。您必须首先捕获文件并将其转换为二进制文件,然后调用Web服务进行上载。
我有一个例子,但在当前位置没有我 - 如果以上内容没有让你开始,请告诉我,我会找到并发布。
答案 2 :(得分:0)
经过一番搜索,我终于找到了基于Codeplex的SPServices的解决方案。有插件SPWidgets(https://github.com/purtuga/SPWidgets/)。此插件使用upload.asmx(Sharepoint的默认上传表单)加载iframe,然后为此页面上的所有元素设置display:none,exept输入[type = file]并添加按钮,可以在iframe中提交表单。提交插件后捕获iframe状态(_onIFramePageChange事件)并做一些回调取决于iframe网址。
这看起来像是一些丑陋的解决方法,但它只是我在搜索数小时后找到的工作解决方案。