嗨,我使用带有聚合物 3.0 的 Visual Studio 2017。我尝试使用 Iron-ajax 来休息通话。但我出现错误“未捕获的 SyntaxError:意外的字符串 Iron-ajax 第 11 行”。我在 Iron-ajax 网站上复制了相同的示例,但错误是同样。我错过了什么?
https://www.webcomponents.org/element/@polymer/iron-ajax
> <script src="node_modules/@polymer/iron-ajax/iron-ajax.js"></script>
> <script type="module">
> import { PolymerElement, html } from './node_modules/@polymer/polymer/polymer-element.js';
> //import './node_modules/@polymer/iron-ajax/iron-ajax.js';
> class SampleElement extends PolymerElement {
> static get template() {
> return html`
> <iron-ajax
> auto
> url="http://localhost:8033/api/City/All"
> hande-as="json"
> on-response="handleResponse"
> debounce-duration="300">
> </iron-ajax>
> `;
> }
> }
>
> customElements.define('sample-element', SampleElement);
> </script>