@polymer/iron-ajax

WebJar for @polymer/iron-ajax

License

License

BSD 3-Clause
GroupId

GroupId

org.webjars.npm
ArtifactId

ArtifactId

polymer__iron-ajax
Last Version

Last Version

3.0.1
Release Date

Release Date

Type

Type

jar
Description

Description

@polymer/iron-ajax
WebJar for @polymer/iron-ajax
Project URL

Project URL

http://webjars.org
Source Code Management

Source Code Management

https://github.com/PolymerElements/iron-ajax

Download polymer__iron-ajax

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.npm/polymer__iron-ajax/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>polymer__iron-ajax</artifactId>
    <version>3.0.1</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/polymer__iron-ajax/
implementation 'org.webjars.npm:polymer__iron-ajax:3.0.1'
// https://jarcasting.com/artifacts/org.webjars.npm/polymer__iron-ajax/
implementation ("org.webjars.npm:polymer__iron-ajax:3.0.1")
'org.webjars.npm:polymer__iron-ajax:jar:3.0.1'
<dependency org="org.webjars.npm" name="polymer__iron-ajax" rev="3.0.1">
  <artifact name="polymer__iron-ajax" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='polymer__iron-ajax', version='3.0.1')
)
libraryDependencies += "org.webjars.npm" % "polymer__iron-ajax" % "3.0.1"
[org.webjars.npm/polymer__iron-ajax "3.0.1"]

Dependencies

compile (1)

Group / Artifact Type Version
org.webjars.npm : polymer__polymer jar [3.0.0,4)

Project Modules

There are no modules declared in this project.

Published on NPM Build status Published on webcomponents.org

<iron-ajax>

The iron-ajax element declaratively exposes network request functionality to Polymer's data-binding system.

See: Documentation, Demo.

Usage

Installation

npm install --save @polymer/iron-ajax

In an html file

<html>
  <head>
    <script type="module">
      import '@polymer/iron-ajax/iron-ajax.js';
    </script>
  </head>
  <body>
    <iron-ajax
        auto
        url="https://www.googleapis.com/youtube/v3/search"
        params='{"part":"snippet", "q":"polymer", "key": "YOUTUBE_API_KEY", "type": "video"}'
        handle-as="json"
        on-response="handleResponse"
        debounce-duration="300">
    </iron-ajax>
  </body>
</html>

In a Polymer 3 element

import {PolymerElement, html} from '@polymer/polymer';
import '@polymer/iron-ajax/iron-ajax.js';

class SampleElement extends PolymerElement {
  static get template() {
    return html`
      <iron-ajax
          auto
          url="https://www.googleapis.com/youtube/v3/search"
          params='{"part":"snippet", "q":"polymer", "key": "YOUTUBE_API_KEY", "type": "video"}'
          handle-as="json"
          on-response="handleResponse"
          debounce-duration="300">
      </iron-ajax>
    `;
  }
}
customElements.define('sample-element', SampleElement);

Contributing

If you want to send a PR to this element, here are the instructions for running the tests and demo locally:

Installation

git clone https://github.com/PolymerElements/iron-ajax
cd iron-ajax
npm install
npm install -g polymer-cli

Running the demo locally

polymer serve --npm
open http://127.0.0.1:<port>/demo/

Running the tests

polymer test --npm
org.webjars.npm

Versions

Version
3.0.1