2

我一直在尝试在 EPiServer 7 中使用 Dojos Dijit 实现小部件。我知道 dojo/dijit 是如何工作的,但是如何在 EPiServer CMS 7 中实现它?我的项目是一个 MVC 项目。我试过查看本指南(http://world.episerver.com/Blogs/Linus-Ekstrom/Dates/2012/10/Creating-a-Dojo-based-component/),但我找不到他在他的 C# 类中使用的命名空间。我试图找到其他教程,但运气不佳。

有谁知道如何做到这一点或可以将我链接到教程?

4

1 回答 1

1

我在 EPiServers 论坛上发布了同样的问题并想通了。

错误是 WidgetType 属性中的数据。

[Component(
    PlugInAreas = "/episerver/cms/assets",
    Categories = "cms",
    WidgetType = "mycomponents.testModule", //was wrong, I had to define "mycomponents".
    Title = "test component",
    Description = "A componenet")]
public class testModuleComponent
{
}

我必须定义一个 dojo 可以识别的名称空间。我在 module.config 中做到了这一点。这是我的模块配置:

<?xml version="1.0" encoding="utf-8"?>
<module>
  <dojoModules>
    <add name="mycomponents" path="~/ClientResources/Scripts" />
  </dojoModules>
</module>

Scripts 是包含 dojo 脚本的文件夹。我将 ~/ClientResources/Scripts 定义为名为 mycomponents 的命名空间的根。

EPiServer 会自动为您包含 dojo,因此您不必自己动手。

请参阅此线程: http ://world.episerver.com/Modules/Forum/Pages/thread.aspx?id=63255&pageIndex=1#reply 。

于 2012-11-14T11:59:53.620 回答