1

こんにちは、sails に文字列変数を html にフォーマットする独自の機能があるかどうか知りたいですか? 私はこのシナリオを持っています...

私のコントローラーには、値が次のような変数があります。

var str = "Pellentesque habitant \r\nmorbi tristique senectus et\nnetus et malesuada fames ac turpis \negestas.";

HTMLページとして表示すると、このようにプレーンに表示されます。(1 段落のみ)

Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.

しかし、ビューソースでは

Pellentesque habitant 
morbi tristique senectus et
netus et malesuada fames ac turpis
egestas.

私はこれに対する可能な解決策を探していて、アンダースコア文字列(https://www.npmjs.org/package/underscore.string)について見つけましたそこに別のモジュールをインストールせずに...

または、php 関数 nl2br に相当する帆はありますか?

ありがとう!

4

1 に答える 1

2

white-space: pre-wrap改行を取得するには、または同等のものを使用する必要があります。デフォルトでは、HTML テキストの改行は余白です。

于 2014-04-22T03:56:35.083 に答える