angular学习日志05 显示文本 ng-bind

来源:互联网 发布:excel防止数据丢失 编辑:程序博客网 时间:2024/06/05 03:29

方法1:

<p>{{helloworld}}</p>

方法2:

<p ng-bind="helloworld"></p>

 两种方法是等量的,如果对于页面要求比较高 建议使用第二种方法展示数据

0 0