Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fokusferit/3924430fa9875b8d39c6635afc0fe4ed to your computer and use it in GitHub Desktop.
Save fokusferit/3924430fa9875b8d39c6635afc0fe4ed to your computer and use it in GitHub Desktop.
<link rel="import" href="../../bower_components/polymer/polymer.html">
<link rel="import" href="../../bower_components/iron-ajax/iron-ajax.html">
<link rel="import" href="../../bower_components/paper-input/paper-input.html">
<dom-module id="ajax-multiple">
<template>
<section id="content">
<paper-input id="post" label="Post" value="{{title}}" on-blur="resolve">
</paper-input>
<iron-ajax auto url="{{resolveUrl}}" handle-as="json" on-response="onResponse" id="xhr"></iron-ajax>
</section>
</template>
<script>
(function(){
'use strict';
const url = "https://jsonplaceholder.typicode.com/posts/";
Polymer({
is: 'ajax-multiple',
properties:{
title: {
type: String
},
resolveUrl: {
type: String
},
},
resolve: function(event) {
if(event.target.value.match(/^[0-9]+$/)) {
this.set('resolveUrl', url + event.target.value);
}
},
onResponse: function(response){
this.set('title', response.detail.response.title);
}
});
</script>
</dom-module>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment