在 Polymer Getting Started页面上,我们看到了一个正在运行的 Polymer 示例:
<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
and定义的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) {
}
};
});
两者有什么区别?
Polymer 解决了 AngularJS 没有或不会解决的哪些问题?
未来是否有计划将 Polymer 与 AngularJS 结合起来?