javascript – 带有换行符的ng-list,作为AngularJS中的textarea分隔符> 1.3

前端之家收集整理的这篇文章主要介绍了javascript – 带有换行符的ng-list,作为AngularJS中的textarea分隔符> 1.3前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用AngularJS 1.3,其中ng-list的语法略有改变(例如,它不再支持正则表达式)

我正在尝试将一个换行符指定为textarea中ng-list的分隔符.但它无法正常工作.我试图将ng-list设置为ASCII换行符




但后来出现了问题.在编辑内容时(即将一个字符添加到textarea内容中),它会立即在每个字符上中断.

如何在AngularJS 1.3中正确指定换行符作为ng-list的分隔符?

链接到plunker:http://plnkr.co/edit/F37yA0LRHQXMh4caP3A0

解决方法

我们应该使用ng-trim =“false”.见更新 plunker
<textarea name="namesInput" 
 ng-list="&#10;"
 ng-model="names"
 ng-trim="false"
 required cols="40" rows="20"></textarea>

参见doc ngList(小引用:)

If ngTrim is set to “false” then whitespace around both the separator and each list item is respected. This implies that the user of the directive is responsible for dealing with whitespace but also allows you to use whitespace as a delimiter,such as a tab or newline character.

原文链接:https://www.f2er.com/js/155822.html

猜你在找的JavaScript相关文章