摘要: 去除数组中重复的对象。 Array.prototype.getUnique = function() { var hash = {}, result = [], key; for ( var i = 0, l = this.length; i < l; ++i ) { key = JSON.stringify(this[i]); ... 阅读全文
posted @ 2017-07-19 11:54 baoged 阅读(90) 评论(0) 推荐(0) 编辑
摘要: 1.用Vs2015打包SharePoint项目。 2.打开SharePoint PowelSheel ,输入一下命令。 Add-SPSolution “C:\Test.wsp” 注:包路径改成你要发布的包存储的路径 3.打开管理中心->系统设置->管理场解决方案,点开你刚新增的wsp包,点击部署。 阅读全文
posted @ 2017-07-05 17:44 baoged 阅读(218) 评论(0) 推荐(0) 编辑
摘要: 问题描述:在sharepoint 原生的UI在chorme中无法弹出对话框,js 提示Cannot read property 'showModalDialog' of undefined。 解决方法: 在页面布局页添加以下代码 <SharePointWebControls:ScriptLink I 阅读全文
posted @ 2017-06-23 12:22 baoged 阅读(306) 评论(0) 推荐(0) 编辑