WordPress有几个通过PHP发送请求的功能,包括wp_remote_post()
, 您可以使用它向API发送POST请求。然后您可以使用wp_remote_retrieve_body()
来处理响应。它看起来像:
$response = wp_remote_post( \'http://example.org/api\' );
$api_response = json_decode( wp_remote_retrieve_body( $response ), true );
如果您需要通过JavaScript与API进行交互,那么WordPress就不会参与其中,您可以使用与任何JavaScript应用程序相同的方式进行交互。