需要在文本区域中保留新行字符。
我写了一个过滤器:
modAFUI.filter('nl2br', function(){
return function(input){
return input?input.replace(/\n/g, '<br/>'):'';
}
});
并将HTML输出为:
<textarea ng-model="record.data.Note_Note | nl2br" style="min-height: 200px; width: 90%" placeholder=""/>
以上不起作用。保存记录后,我仍然将输入的文本作为单行输入而没有任何中断。有什么遗失的吗?
由于
Shaddy。