Created
April 8, 2016 08:07
-
-
Save fokusferit/6e7b3c315ec4012ac3c3402ee2c0b707 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link rel="import" href="https://cdn.rawgit.com/Download/polymer-cdn/master/lib/polymer/polymer.html" /> | |
<link rel="import" href="https://cdn.rawgit.com/Download/polymer-cdn/master/lib/iron-ajax/iron-ajax.html" /> | |
<dom-module id="ajax-element"> | |
<template> | |
<iron-ajax | |
auto | |
url="https://jsonplaceholder.typicode.com/posts/1" | |
handle-as="json" | |
last-response="{{response}}" | |
id="xhr"></iron-ajax> | |
</template> | |
<script> | |
let url = "https://jsonplaceholder.typicode.com/posts/"; | |
Polymer({ | |
is: "ajax-element", | |
properties: { | |
response: { | |
type: String | |
} | |
} | |
}); | |
</script> | |
</dom-module> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment