タグ付けされた質問 「polymer」

10
Polymer要素とAngularJSディレクティブの違いは何ですか?
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', …
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.