在聚合物入门页面,我们看到了一个聚合物的例子:
<html>
<head>
<!-- 1. Shim missing platform features -->
<script src="polymer-all/platform/platform.js"></script>
<!-- 2. Load a component -->
<link rel="import" href="x-foo.html">
</head>
<body>
<!-- 3. Declare the component by its tag. -->
<x-foo></x-foo>
</body>
</html>
你会注意到<x-foo></x-foo>是由platform.js和x-foo.html定义的。
看起来这相当于AngularJS中的指令模块:
angular.module('xfoo', [])
.controller('X-Foo', ['$scope',function($scope) {
$scope.text = 'hey hey!';
})
.directive('x-foo', function() {
return {
restrict: 'EA',
replace: true,
controller: 'X-Foo',
templateUrl: '/views/x-foo.html',
link: function(scope, controller) {
}
};
});
这两者之间有什么区别?
有哪些问题是聚合物解决了,而AngularJS还没有或不会解决的?
将来有计划把Polymer和AngularJS绑定在一起吗?
这两者之间有什么区别?
对用户来说:没什么。你可以用这两种方法来构建出色的应用程序。
对于开发者来说:他们使用不同的语法,所以任何一种解决方案都有相当陡峭的学习曲线。Angular已经存在了很长时间,而且有一个庞大的社区,所以你很难找到还没有解决的问题。
To an architect: Very different. Angular is an application framework responsible for all aspects of your life. It even has directives vertically integrated in case you want component like features. Polymer on the other hand is more like pay-as-you-go. You want a modal, sure thing, you want an interactive widget, no problem, you want route handling, we can do that to. Polymer is also more portable in that Angular requires an Angular app to reuse directives. The idea with Polymer is be more moduler and will work in other apps, even Angular apps.
有哪些问题是聚合物解决了,而AngularJS还没有或不会解决的?
聚合物是一种朝向利用新的网络组件标准的方法。如果本地支持自定义元素、Shadow DOM和HTML导入等特性,那么不利用它们将是愚蠢的。目前,大多数web组件的功能还没有得到广泛的支持(目前的状态),所以聚合物充当垫片或桥梁。有点像一个填充(事实上它确实使用填充)。
将来有计划把Polymer和AngularJS绑定在一起吗?
我们一起使用Angular和Polymer已经有一年多了。这样做的部分决定是基于聚合物团队直接向我们承诺的互操作性。我们已经放弃了那个想法。我们现在正朝着只使用聚合物的方向发展。
如果再做一遍,我们可能根本就不会使用聚合物,而是等待它成熟。话虽如此,聚合物有优点(有些很好)和缺点(有些很令人沮丧),但我认为这是另一个话题的讨论。
Angular指令在概念上类似于自定义元素,但它们的实现不使用Web组件api。Angular指令是构建自定义元素的一种方式,但Polymer和Web Components规范是基于标准的方式。
polymer-element:
<polymer-element name="user-preferences" attributes="email">
<template>
<img src="https://secure.user-preferences.com/path/{{userID}}" />
</template>
<script>
Polymer('user-preferences', {
ready: function() {
this.userID= md5(this.email);
}
});
</script>
</polymer>
角指令:
app.directive('user-preferences', ['md5', function() {
return {
restrict: 'E',
link: function(scope, element, attrs) {
scope.userID= md5(attrs.email);
},
template: '<img src="https://secure.user-preferences.com/path/{{userID}}" />'
};
}]);