2

我正在尝试为 Umbraco 7.0.1 解决方案整理出一个基本的自定义属性编辑器,但看起来我在某处遗漏了一些东西,因为 Angular 无法识别被调用的控制器函数。我需要另一双眼睛来解决这个问题。

我几乎复制并粘贴了 Umbraco 网站上提供的示例,然后打算充实它。这是我到目前为止所拥有的:

包清单

{   
    //you can define multiple editors   
    propertyEditors: [      
        {
            /*this must be a unique alias*/ 
            alias: "AcuIT.Multidate",
            /*the name*/
            name: "Multidate Picker",
            /*the html file we will load for the editor*/
            editor: {
                view: "~/App_Plugins/Multidate/multidate.html"
            }
        }
    ]
    ,
    //array of files we want to inject into the application on app_start
    javascript: [
        '~/App_Plugins/Multidate/multidate.controller.js'
    ]
}

多日期.html

<div ng-controller="AcuIT.MultidateController">
    <textarea ng-model="model.value"></textarea>
</div>

多日期控制器.js

angular.module("umbraco")
    .controller("AcuIT.MultidateController",
    function () {
        alert("The controller has landed");
    });

最后,这是我在浏览器控制台中看到的错误:

错误:参数 'AcuIT.MultidateController' 不是函数,在错误 () 处未定义

这可能是我在某个地方错过的名字或路径,但我还没有发现它。任何指针表示赞赏。

4

1 回答 1

4

重新启动应用程序池并刷新浏览器以包含清单中的文件

于 2013-12-26T07:36:45.820 回答