2016-05-27 8 views

答えて

0

私は同じ問題があった。私はGitHubから直接<iron-ajax>をインポートしてしまいました(rawgit経由で)。

<head> 
 
    <base href="http://polygit.org/polymer+1.4.0/components/"> 
 
    <link rel="import" href="polymer/polymer.html"> 
 
    <script src="webcomponentsjs/webcomponents-lite.min.js"></script> 
 
    <link rel="import" href="https://cdn.rawgit.com/PolymerElements/iron-ajax/v1.2.0/iron-ajax.html"> 
 
</head> 
 
<body> 
 
    <x-foo></x-foo> 
 

 
    <dom-module id="x-foo"> 
 
    <template> 
 
     <div>Please wait...</div> 
 
     <iron-ajax id="ajax" 
 
       auto 
 
       url="http://jsonplaceholder.typicode.com/users/" 
 
       last-response="{{data}}" 
 
       handleAs="json"> 
 
     </iron-ajax> 
 
     <table> 
 
     <template is="dom-repeat" items="[[data]]"> 
 
      <tr> 
 
      <td>[[item.id]]</td> 
 
      <td>[[item.name]]</td> 
 
      <td>[[item.email]]</td> 
 
      </tr> 
 
     </template> 
 
     </table> 
 
    </template> 
 
    <script> 
 
     HTMLImports.whenReady(function() { 
 
     Polymer({ 
 
      is: 'x-foo' 
 
     }); 
 
     }); 
 
    </script> 
 
    </dom-module> 
 
</body>

jsbin

あなたはpolymer.htmlpromise-polyfill-lite.htmlに関するいくつかのコンソールエラーが表示されますが、あなたは<iron-ajax>をインポートする前にPolygitからそれらを読み込むことができます。

関連する問題