marcoscaceres commented on this pull request.
> + "fetch">Fetch API</a>:
+ </p>
+ <pre class="example">
+ async function doPaymentRequest() {
+ const payRequest = new PaymentRequest(methodData, details, options);
+ const payResponse = await payRequest.show();
+ let result = "unknown";
+ try {
+ const httpResponse = await fetch("/process-payment", {
+ method: "POST",
+ headers: new Headers({ "Content-Type": "application/json" }),
+ body: payResponse.toJSON(),
+ });
+ result = httpResponse.ok ? "success" : "fail";
+ } catch (err) {
+ console.error(err);
Probably... but wanted to show the "unknown" state somehow.
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/w3c/payment-request/pull/583#discussion_r133349548