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
ことに気付くでしょう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) {
}
};
});
2つの違いは何ですか?
Polymer が解決する問題で、AngularJS が解決しない、または解決しない問題は何ですか?
将来、Polymer を AngularJS と結びつける計画はありますか?