是什么区别$parse
,$interpolate
和$compile
服务?对我来说,他们都做同样的事情:获取模板并将其编译为模板功能。
是什么区别$parse
,$interpolate
和$compile
服务?对我来说,他们都做同样的事情:获取模板并将其编译为模板功能。
Answers:
这些都是服务的所有例子,援助在AngularJS视图呈现(虽然$parse
并 $interpolate
可以使用该结构域之外)。为了说明每个服务的作用,让我们以这段HTML为例:
var imgHtml = '<img ng-src="/path/{{name}}.{{extension}}">'
和范围上的值:
$scope.name = 'image';
$scope.extension = 'jpg';
鉴于此标记,这里是每个服务带到表中的内容:
$compile
-它可以采用整个标记并将其转换为链接功能,当在特定范围内执行该链接功能时,会将一段HTML文本转换为动态,实时的DOM,并且所有指令(在此处ng-src
:)对模型更改做出反应。可以这样调用它:$ compile(imgHtml)($ scope)并得到一个带有所有DOM事件范围的DOM元素。$compile
正在利用$interpolate
(除其他事项外)完成工作。$interpolate
知道如何使用嵌入式插值表达式处理字符串,例如:/path/{{name}}.{{extension}}
。换句话说,它可以使用带有插值表达式的字符串,范围并将其转换为结果文本。可以将$interpolation
服务视为一种非常简单的基于字符串的模板语言。给定上面的示例,可以使用此服务,例如:$interpolate("/path/{{name}}.{{extension}}")($scope)
获得path/image.jpg
字符串作为结果。$parse
用于通过$interpolate
评估个体式(name
,extension
对一个范围)。它可用于读取和设置给定表达式的值。例如,要评估name
表达式,可以这样做:$parse('name')($scope)
获得“图像”值。要设置值,可以这样做:$parse('name').assign($scope, 'image2')
所有这些服务正在共同努力,以在AngularJS中提供实时UI。但是它们在不同的级别上运行:
$parse
仅与单个表达式(name
,extension
)有关。它是一种读写服务。$interpolate
是只读的,并且涉及包含多个表达式(/path/{{name}}.{{extension}}
)的字符串$compile
是AngularJS机制的核心,可以将HTML字符串(带有指令和插值表达式)转换为实时DOM。$interpolate
AnjularJS中实际存在的所有内容,最后我得到了一个紧凑而内容丰富的答案。
$interpolate-->
Let us say you have two variables assigned to $scope object in the controller,
$scope.a = 2;
$scope.b = 3;
var f = $interpolate("Result is : {{a*b}}");
var result = f($scope);
console.log(result); --->'Result is 6'
This means that $interpolate can take the string which has one or more angular expressions.
Now $parse:
var f1 = $parse("a*b");
var result1 = f1($scope);
console.log(result1); ----> '6'
**So $interpolate has the capability to evaluate a string with angular expressions mixed up in the string against the scope to get the result**.
Another important difference between $interpolate and $parse,$eval is:
**$interpolate has the capability to work with strings containing filters along with angular expressions.**
This feature is not accessible in $eval , $parse.
console.log($interpolate("Result is : {{a*b | currency : 'USD$'}}")($scope));
---> 'Result is USD $6.00'
与我们在$ eval和$ parse中一样,$ interpolate对$ scope变量没有写访问权限
$ parse,$ interpolate --->需要注入,但不必在控制器中或使用它的位置注入$ eval
$ parse,$ interpolate给出了可以针对任何上下文进行评估的函数,但是$ eval始终针对$ scope进行评估。
$ eval和$ interpolate在幕后仅使用$ parse。
这是可爱的解释。
var img = img/{{name}}.{{extension}}
$parse - > (name,extension) = > vimal , .jpg
$interpolate -> use angular $parse and convert into string -> img/vimal.jpg
$compile -> can turn html string img/vimal.jpg into live DOM so new img tag will be added inside our DOM with all prototype that a img tag have.