我定义了一个名为
Reply
文档类型为
RichTextEditor
.
我无法得到的价值
回复
.此问题仅适用于其类型为的属性
RichTextEditor
!!!
如何在Umbraco后台获取富文本编辑器的价值?
我已经习惯了
Umbraco 7.x
和
ASP.NET MVC
.
angular.module("umbraco").controller("Reply.controller", function ($scope, $http, $routeParams) {
$scope.SendReply = function () {
var contentId = $routeParams.id;
var replyText = $("#Reply").val(); // without value ??? (type of Reply is RichTextEditor)
var email = $("#Email").val(); // It's OK.
var dataObj = {
ReplyText: replyText,
ContentId: contentId,
Email: email,
};
$http.post("backoffice/Reply/ReplyToIncomingCall/ReplyMessage", dataObj).then
(
function (response) {
alert("YES!");
//TODO:
}
);
}
});