stenciljs中的http请求

时间:2017-11-14 08:33:33

标签: xmlhttprequest axios stenciljs

如何在StencilJS中发出http请求(GET / POST / PUT / DELETE)?

我尝试使用axios如下:npm install axios --save和模板组件import axios from 'axios';。我一打电话axios.get(...),就会收到以下错误消息:

[ERROR] bundling:node_modules / axios / lib / adapters / http.js,line:4

模块无法自行导入

L3:var utils = require(' ./../ utils');

L4:var sett = require(' ./../ core / settle');

L5:var buildURL = require(' ./../ helpers / buildURL');

我知道这可能与此问题有关:https://github.com/ionic-team/stencil/issues/98

但是,有关如何获取html请求的任何建议都在模板组件中工作吗?

2 个答案:

答案 0 :(得分:8)

我们可以使用fetch API。它是浏览器原生的,因此不需要导入。 StencilJS也有一个polyfill,因此它可以在任何地方使用。

感谢@insanicae指点我。

  

示例:

import { Component, State } from '@stencil/core';

@Component({
  tag: 'app-profile',
  styleUrl: 'app-profile.css'
})
export class AppProfile {
  @State() name: string;

  componentWillLoad() {
    fetch('https://api.github.com/users/ErvinLlojku')
      .then((response: Response) => response.json())
      .then(response => {
        this.name = response['name'];
      });
  }

  render() {
    return [
      <ion-header>
        <ion-toolbar color="primary">
          <ion-buttons slot="start">
            <ion-back-button defaultHref="/" />
          </ion-buttons>
          <ion-title>Profile: {this.name}</ion-title>
        </ion-toolbar>
      </ion-header>,

      <ion-content padding>
        <p>My name is {this.name}.</p>

      </ion-content>
    ];
  }
}

请参阅fetch的官方文档以获取更多信息。 https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API

答案 1 :(得分:1)

您甚至可以使用我的component来使用Fetch API,只需删除网址并收听OK或KO事件。