javascript Fetch2.js
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript Fetch2.js相关的知识,希望对你有一定的参考价值。
import React, { Component } from 'react';
import Fetch from 'react-fetch-component';
/*
Common pattern is to encapsalate the URL within a component
and pass the remaining props to <Fetch />
*/
function Fetch2({ username, ...rest }) {
const url = `https://api.github.com/users/${username}/repos`;
return <Fetch url={url} {...rest} />
}
export default class DataComponentExample extends Component {
render() {
return (
<div>
<h1>Data Component</h1>
<Fetch2 username="manniru">
{({ loading, data, error }) => (
<div>
{loading && <span>Loading...</span>}
{data && data.map((d, i) => <div key={i}>{d.name}</div>)}
</div>
)}
</Fetch2>
</div>
);
}
}
以上是关于javascript Fetch2.js的主要内容,如果未能解决你的问题,请参考以下文章
javascript的题。
javascript JavaScript isset()等效: - JavaScript
JavaScript 使用JavaScript更改CSS(JavaScript)
JavaScript之基础-1 JavaScript(概述基础语法)
前端基础-JavaScript的基本概述和语法
JavaScript