私は同じ問題があった。私は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.html
とpromise-polyfill-lite.html
に関するいくつかのコンソールエラーが表示されますが、あなたは<iron-ajax>
をインポートする前にPolygitからそれらを読み込むことができます。