1

https://www.youtube.com/watch?v=yelPlCVZLEEに示されている Payment request API の例を実行しようとしています。彼らが説明するプロセスに従い、次のコードも実行しました。

function go() {
   console.log('Pay');
   var request = new PaymentRequest([{
            supportedMethods:['urn:payment:visa','urn:payment:mc','urn:payment:amex']
         }],
         {
            total: {
            label: "Total due",
            amount: { currencyCode: "USD", value: "60.00" }, // US$60.00
         }
     }
   );

request.show()
  .then(function(response) {
    // process transaction response here
    return response.complete(true);
  })
  .then(function() {
    alert("Buy!");
  })
  .catch(function(e) {
    alert(e.name);
  });
 }

次のエラーが表示されます: Uncaught ReferenceError: PaymentRequest が定義されていません。

http://github.adrianba.net/paymentrequest-demo/tests/payment-tests.htmlからテストを実行する と、 定義されていると表示されます。私が間違っていることは何ですか?

4

1 に答える 1

3

リンクしたサイトhttp://github.adrianba.net/paymentrequest-demo/tests/payment-tests.htmlは、次のファイルを取り込みます。

<script src="../lib/paymentrequest.js"></script>

の独自の実装を定義しますPaymentRequest:

function PaymentRequest(methodData,details,options) {
  // Constructor code
  if(!Array.isArray(methodData) || methodData.length===0) throw new TypeError("methodData must be a non-empty sequence of PaymentMethodData");
  methodData.forEach(d => {
  ...

http://github.adrianba.net/paymentrequest-demo/lib/paymentrequest.js

ChromeにPaymentRequestアクセスするには、chrome://flags/#enable-experimental-web-platform-features で有効にする必要があります。

于 2016-06-24T22:23:23.020 に答える