EPiServer:我可以从代码隐藏设置动态属性吗?

发布于 2024-12-26 21:20:39 字数 99 浏览 1 评论 0原文

我尝试将其设置为普通的页面属性,但没有成功。

我想我可以使用 DynamicProperty 类,但由于无缓存问题,我真的想避免这种情况。

有人建议吗?

I tried to set it as a normal page-property, but no luck.

Guess I could use the DynamicProperty class but I really want to avoid this because of the no-cache issue.

Suggestions anyone?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

柏拉图鍀咏恒 2025-01-02 21:20:39

据我所知,执行此操作的唯一方法是使用 DynamicProperty 类。如果您查看 PageData 对象上索引器属性的文档它说:

注意!使用此索引器将使用 Pre 和 Post 处理程序进行属性查找。返回值不保证属于该页面,但可能是动态属性、“fetch-data-from”-data 等。要获取保证属于该页面的数据,请使用 GetValue 和 SetValue 方法。

另请注意,使用此索引器设置值只会设置实际属于该页面的值,即您可以通过从索引器读取来获取有效值,但尝试为同一索引设置新值可能会产生异常因为页面中不存在该值。

您将需要使用 DynamicProperty 类:

DynamicProperty myDynProp = DynamicProperty.Load(CurrentPage.PageLink, "PropertyName");
myDynProp.PropertyValue.Value = "new value";
myDynProp.Save();

或者,您可以使用 Joel 讨论的想法来规避动态属性 此处

AFAIK the only way to do this is with the DynamicProperty class. If you look at the documentation on the indexer property on the PageData object it says:

Note! Using this indexer will use the Pre and Post handlers for property lookup. I e return values are not guaranteed to belong to the page, but may be dynamic properties, "fetch-data-from"-data etc. To get data guaranteed to belong to this page, use the GetValueand SetValue methods.

Also note that setting values with this indexer will only set values that acually belong to the page, i e you may get a valid value by reading from the indexer, but trying to set a new value for the same index may yield an exception since the value does not exist in the page.

You will need to use the DynamicProperty class:

DynamicProperty myDynProp = DynamicProperty.Load(CurrentPage.PageLink, "PropertyName");
myDynProp.PropertyValue.Value = "new value";
myDynProp.Save();

Alternatively, you could circumvent the Dynamic Property using an idea Joel discusses here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文