基于vue-cli快速构建
摘要:1.使用npm全局安装vue-cli(前提是你已经安装了nodejs,否则你连npm都用不了),在cmd中输入一下命令 npm install --global vue-cli 2.安装完成后,创建自己的工作空间,在cmd切换至刚刚创建好的工作空间,如果已经有工作空间,直接切换到工作空间即可。使用命
阅读全文
posted @
2020-02-21 19:30
wengnet
阅读(196)
推荐(0)
node-sass 安装报错解决办法
摘要:报错: gyp verb check python checking for Python executable "python2" in the PATH gyp verb check python checking for Python executable "python" in the PA
阅读全文
posted @
2020-02-13 13:58
wengnet
阅读(5316)
推荐(0)
JQuery 删除SharePoint菜单
摘要:直接看代码:jQuery(document).ready(function($){ var objects = document.getElementsByTagName("ie:menuitem"); for (var i = 0; i < objects.length; i++) { itm = objects[i]; if ($('#' + itm.id).attr("text") == "Sign in as Different User") { $('#' + itm.id).remov
阅读全文
posted @
2012-09-28 12:44
wengnet
阅读(220)
推荐(0)
SharePoint2010 ECMAScript常用提醒方法
摘要:不多说,直接上代码: 1 var statusId = ''; 2 var notifyId = ''; 3 function AddNotification() { 4 notifyId = SP.UI.Notify.addNotification("Hello World!", true); 5 } 6 function RemoveNotification() { 7 SP.UI.Notify.removeNotification(notifyId); 8 notifyId = ''; 9 }10 function Ad
阅读全文
posted @
2012-08-02 08:54
wengnet
阅读(638)
推荐(1)
WebPart开发中的注册JavaScript事件
摘要:先看代码:代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--1<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xh...
阅读全文
posted @
2009-12-04 10:27
wengnet
阅读(1473)
推荐(1)
Moss和非Moss系统的整合-登录问题
摘要:刚做的一个项目,客户要求从一个采用Form认证的系统登录Moss,但是不能让用户再输入用户名和密码;现在客户的环境是这样的存在一个Form认证的系统,Moss是新安装在一个域里面的,但是Form认证的系统没有在域里面,所以存在一个两个系统之间用户同步的问题?这个问题好解决,也不是我们今天的主题,问题是如何做到两个系统的单一登录? 以前做的只是使用Moss的单一登录,用Moss去登录其他的系统,现在...
阅读全文
posted @
2008-10-23 09:59
wengnet
阅读(895)
推荐(0)