KendoEditorウィジェットによってレンダリングされるテキストエリアに特殊文字を挿入すると問題が発生します。ウィジェットを次のように設定しました。KendoEditor TextAreaの特殊文字の解析
function configureRequestNotesEditor() {
$("#notes").kendoEditor({
resizable: {
content: true
},
pasteCleanup: {
all: true,
css: true,
keepNewLines: true,
msAllFormatting: true,
msConvertLists: true,
msTags: true,
none: false,
span: false
},
tools: [
"bold", "underline", "insertUnorderedList", "insertOrderedList", "indent", "outdent"
]
});
}
私は私のAPIにデータを送信するときに私は、javacript関数escape()
を使用して、私はAPIから呼び出すときに戻って、JavaScript関数unescape()
を呼び出します。私はテキストエリアのフィールドに入力していたテキストは以下の通りです:
Send to James in UW ASAP. See attached files. How long is this field?
300
The amount should be <any amount you can think of.
データが保存され、その後、UIに戻ってレンダリング
画面疑問がある<p>Send to James in UW ASAP. See attached files. How long is t his field?</p><p>300</p><p>The amount should be <any amount you can think of.</p>
に印刷され、以下、どのようにデータを保存したのと同じ方法で元に戻すことができますか?これを防ぐために私は間違って何をしていますか?また、C#のバックエンドでは、テキストをデータベースに格納する前にHttpUtility.HtmlDecode(randomText)
を使用しています。