Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Piranha CMS Manager 中创建了一些自定义系统参数。我喜欢在我的代码中使用这些参数。如何从我的代码中访问这些参数?
最简单的方法是使用以下静态方法:
var val = Piranha.Models.SysParam.GetByName(...);
此方法的结果也会被缓存以提高性能。
问候
哈坎