作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在我的 Sitecore 6.1.0 安装中,我通过实现我自己的自定义处理程序(在 Web.config 中)连接到“item: added”事件:
<event name="item:added">
<handler type="Sitecore.Data.Fields.ItemEventHandler, Sitecore.Kernel" method="OnItemAdded" />
<handler type="my.project.Classes.OnSaveItemHandler, my.project" method="OnItemAdded" />
</event>
protected void OnItemAdded(object obj, EventArgs args)
{
}
args
中的项目参数是正确的项目。如果项目的名称是
theItemName
,FullPath 属性将如下所示:
/sitecore/content/theItemName
[orphan]/sitecore/content/theItemName
最佳答案
我相信像这样的事件存在已知问题,其中该方法将被多次调用。我知道我有过类似的经历,我试图在创建项目时以编程方式为项目创建角色。 John West said the following as a precaution :
I seem to remember that Sitecore sometimes fires some events more than once, so you might want to check for that [...]
protected void OnItemAdded(object obj, EventArgs args) {
Item item = // code to extract item from args, I forgot it
if(item.Paths.FullPath.StartsWith("/sitecore/content")) {
// do your stuff because you know its the first time the event fired
}
}
关于每当添加一个项目时,Sitecore 都会添加几个孤立项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6138754/
如果数据很大,我正在使用 orphan 属性在打印时添加分页符它在 chrome 和 IE 中工作但在 FireFox 中不支持. docprint.document.write('
如果我从“Default.aspx”等进行 AJAX PageMethod 或 WebMethod 调用,然后在初始 PageMethod 返回之前快速导航到另一个页面(例如“Settings.asp
我是一名优秀的程序员,十分优秀!