インストール
モジュールをインストールします
npm install @wordpress/api-fetch --save
このパッケージは、あなたのコードがES2015+環境で実行されることを前提としています。そのような言語機能やAPIのサポートが限られているか、まったくない環境を使用している場合は、コードに@wordpress/babel-preset-default
で提供されるポリフィルを含める必要があります。
使用法
GET
import apiFetch from '@wordpress/api-fetch';
apiFetch( { path: '/wp/v2/posts' } ).then( ( posts ) => {
console.log( posts );
} );
クエリ引数付きGET
import apiFetch from '@wordpress/api-fetch';
import { addQueryArgs } from '@wordpress/url';
const queryParams = { include: [1,2,3] }; // Return posts with ID = 1,2,3.
apiFetch( { path: addQueryArgs( '/wp/v2/posts', queryParams ) } ).then( ( posts ) => {
console.log( posts );
} );
POST
apiFetch( {
path: '/wp/v2/posts/1',
method: 'POST',
data: { title: 'New Post Title' },
} ).then( ( res ) => {
console.log( res );
} );
オプション
さらに、以下のオプションが利用可能です:
#### path (文字列)
`````url`````の代わりに使用されるショートハンドで、現在のサイトのREST APIルートURLに追加されます。
#### url (文字列)
取得するエンドポイントへの絶対URL。
#### parse (ブール値、デフォルトはtrue)
`````fetch`````とは異なり、`````Promise`````の`````apiFetch`````の戻り値は解析されたJSON結果に解決されます。この動作を無効にするには、`````parse`````を`````false`````として渡します。
#### data (オブジェクト)
`````POST`````または`````PUT`````リクエストのみに送信されます。`````body`````の代わりに使用されるショートハンドで、JSONに文字列化されるオブジェクト値を受け入れます。
<a name="aborting-a-request"></a>
### リクエストの中止
リクエストの中止は、ネイティブの`````fetch````` APIを使用するのと同じ方法で[`````AbortController`````](https://developer.mozilla.org/en-US/docs/Web/API/AbortController)を使用することで達成できます。
`````AbortController`````をサポートしていないレガシーブラウザの場合、次のいずれかを行うことができます:
- 中止可能にしたい場合は、`````AbortController`````の独自のポリフィルを提供します。
- 以下の例のように無視します。
**例**
``````bash
const controller =
typeof AbortController === 'undefined' ? undefined : new AbortController();
apiFetch( { path: '/wp/v2/posts', signal: controller?.signal } ).catch(
( error ) => {
// If the browser doesn't support AbortController then the code below will never log.
// However, in most cases this should be fine as it can be considered to be a progressive enhancement.
if ( error.name === 'AbortError' ) {
console.log( 'Request has been aborted' );
}
}
);
controller?.abort();
`
ミドルウェア
**例**
``````bash
import apiFetch from '@wordpress/api-fetch';
apiFetch.use( ( options, next ) => {
const start = Date.now();
const result = next( options );
result.then( () => {
console.log( 'The request took ' + ( Date.now() - start ) + 'ms' );
} );
return result;
} );
`
組み込みミドルウェア
**Nonceミドルウェア**
``````bash
import apiFetch from '@wordpress/api-fetch';
const nonce = 'nonce value';
apiFetch.use( apiFetch.createNonceMiddleware( nonce ) );
`
**ルートURLミドルウェア**
``````bash
import apiFetch from '@wordpress/api-fetch';
const rootURL = 'http://my-wordpress-site/wp-json/';
apiFetch.use( apiFetch.createRootURLMiddleware( rootURL ) );
`
カスタムフェッチハンドラー
**例**
以下の例では、[`````axios`````](https://github.com/axios/axios)を使用してすべてのリクエストを行うためのカスタムフェッチハンドラーを使用しています。
``````bash
import apiFetch from '@wordpress/api-fetch';
import axios from 'axios';
apiFetch.setFetchHandler( ( options ) => {
const { url, path, data, method } = options;
return axios( {
url: url || path,
method,
data,
} );
} );
`
このパッケージへの貢献
これはGutenbergプロジェクトの一部である個別のパッケージです。このプロジェクトはモノレポとして整理されています。特定の目的を持つ複数の自己完結型ソフトウェアパッケージで構成されています。このモノレポ内のパッケージは、https://www.npmjs.com/に公開され、https://make.wordpress.org/core/や他のソフトウェアプロジェクトで使用されています。
このパッケージやGutenberg全体への貢献について詳しく知りたい場合は、プロジェクトの主要なhttps://github.com/WordPress/gutenberg/tree/HEAD/CONTRIBUTING.mdをお読みください。