6

Mustachejs を使用して古い CMS を変換しています。コンテンツの BODY には、いくつかの html 要素が含まれています。

<strong>Mickey Mouse</strong> is a funny animal cartoon character created in 1928 by Walt Disney.

{{Description}}のように値を Mustachejs に適用します。

レンダリングされた出力は

<strong>Mickey Mouse</strong> is a funny animal cartoon character
created in 1928 by Walt Disney.

Mustachejs は、データベース内の値をそのまま表示します。

Mustachejs で html マークアップを html としてレンダリングするにはどうすればよいですか?

望ましい結果

ミッキー マウスは、ウォルト ・ ディズニーによって 1928 年に作成された面白い動物の漫画のキャラクターです。

4

1 に答える 1

25

It's not literally displaying the value as it is in the db, it's encoding it. It's actually outputting

&lt;strong&gt;Mickey Mouse&lt;/strong&gt;

Use {{{three_braces}}} to have Mustache render without html encoding the string. {{{Description}}}

于 2013-03-07T03:18:50.980 に答える