interpolate
接受字符串参数,返回模版工厂
<pre>angular.module('myApp',[])
.controller('MyController', function($scope, $interpolate){
$scope.to = {email: zheng@foxmai.com};
// temp 为返回的工厂函数,一般配合$watch触发使用
var temp = $interpolate('我的邮箱是:{{ email }}');
// rst:我的邮箱是zheng@foxmai.com,
$scope.rst = temp($scope);
});
</pre>
interpolateProvider
如果想改变用 {{}} 数据绑定,用interpolateProvider配置
<pre>
angular.module('myApp',[])
.config(function($interpolateProvider){
// 用下划线代替花括号
$interpolatePrivider.startSymbol('');
$interpolatePrivider.endSymbol('_');
});
</pre>
出处:https://www.jianshu.com/p/e8418f41d844