我正在运行Umbraco版本7.9.2并跟随this tutorial以了解如何创建自定义属性编辑器。
我的第一步是创建一个名为MarkDownEditor的文件夹
我的第二步是创建一个名为package.manifest.json的文件
{
//you can define multiple editors
"propertyEditors": [
{
/*this must be a unique alias*/
"alias": "My.MarkdownEditor",
/*the name*/
"name": "My markdown editor",
/*the icon*/
"icon": "icon-code",
/*grouping for "Select editor" dialog*/
"group": "Rich Content",
/*the HTML file we will load for the editor*/
"editor": {
"view": "~/App_Plugins/MarkDownEditor/markdowneditor.html"
}
}
],
//array of files we want to inject into the application on app_start
"javascript": [
"~/App_Plugins/MarkDownEditor/markdowneditor.controller.js"
]
}
然后我在MarkDownEditor目录中创建了两个文件:markdowneditor.controller.js和markdowneditor.html
markdowneditor.html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
</head>
<body>
<div ng-controller="My.MarkdownEditorController">
<textarea ng-model="model.value"></textarea>
</div>
</body>
</html>
markdowneditor.controller.js
angular.module("umbraco")
.controller("My.MarkdownEditorController",
//inject umbracos assetsService
function ($scope, assetsService) {
//tell the assetsService to load the markdown.editor libs from the markdown editors
//plugin folder
assetsService
.load([
"~/App_Plugins/MarkDownEditor/lib/Markdown.Converter.js",
"~/App_Plugins/MarkDownEditor/lib/Markdown.Sanitizer.js",
"~/App_Plugins/MarkDownEditor/lib/Markdown.Editor.js"
])
.then(function () {
//this function will execute when all dependencies have loaded
alert("editor dependencies loaded");
console.log('stuff has loaded!');
});
//load the separate css for the editor to avoid it blocking our js loading
assetsService.loadCss("~/App_Plugins/MarkDownEditor/lib/Markdown.Editor.css");
});
最后,我在Umbraco CMS中注册了编辑器,将其放在一个简单的文档类型中,最后在多个浏览器中访问了该页面。
而且......我一无所获。好像编辑器正在工作(我想),但我不知道为什么我没有看到控制器中包含的警报或console.log。我做错了什么?我尝试过多个浏览器,所以我知道这不是缓存问题,我确保在Visual Studio中重建项目。
编辑1:
根据建议,我已经尝试修改assetService文件路径,因为〜似乎是一个C#的东西,而我的控制器是一个javascript文件。它现在看起来像这样
.load([
"/App_Plugins/MarkDownEditor/lib/Markdown.Converter.js",
"/App_Plugins/MarkDownEditor/lib/Markdown.Sanitizer.js",
"/App_Plugins/MarkDownEditor/lib/Markdown.Editor.js"
])
但是,我仍然没有看到警报或控制台日志。
我确实意识到我做错了一件事是没有在降价模板中包含我的降价值。我已经完成了,现在看到我在创建新的降价页面时放入编辑器的内容。
答案 0 :(得分:1)
简单的解决方案。我的package.manifest文件扩展名为.json。当它被删除时,一切都很完美。对于遇到这个问题的人来说,〜在javascript文件中完美运行。