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からテストを実行する と、 定義されていると表示されます。私が間違っていることは何ですか?