答案 0 :(得分:6)
使用ng-trim="false"
指令:
<input type="text" ng-model="Location" ng-trim="false">
答案 1 :(得分:5)
您可以将ng-trim="false"
属性添加到stop Angular from trimming the extra whitespace in input fields。
除此之外,您还有whitespace isn't rendered in HTML。
的其他问题您可以使用
解决此问题Full Name: <pre>{{Location + " " + Item}}</pre>
或者通过使用css:
white-space: pre;