PaymentRequest: shippingaddresschange event - Web APIs 编辑
Secure context
This feature is available only in secure contexts (HTTPS), in some or all supporting browsers.
The shippingaddresschange
event is sent to the PaymentRequest
object when the user selects a shipping address or changes details of their shipping address.
Bubbles | No |
---|---|
Cancelable | No |
Interface | PaymentRequestUpdateEvent |
Event handler property | onshippingaddresschange |
Usage notes
Depending on the browser, the shipping address information may be redacted for privacy reasons. That is, the PaymentAddress
which contains the shipping address may have some portions of its content altered, obscured, or left out entirely in order to prevent identifying the user without their consent (since if they choose to have you ship products to them, you'll need their address).
Example
In this example, a handler for the shippingaddresschange
event is set up to validate that the address meets requirements set by the web application.
const paymentRequest = new PaymentRequest(methodData, details, options);
paymentRequest.addEventListener("shippingaddresschange", event => {
let detailsUpdate = checkAddress(paymentRequest.shippingAddress);
event.updateWith(detailsUpate);
}, false);
const checkAddress = theAddress => {
let detailsUpdate = {};
// Check the address, return a PaymentDetailsUpdate object
// with any changes or errors.
return detailsUpdate;
};
You can also establish a handler for shippingaddresschange
using the onshippingaddresschange
event handler property:
paymentRequest.onshippingaddresschange = event => {
let detailsUpdate = checkAddress(paymentRequest.shippingAddress);
event.updateWith(detailsUpdate);
};
Specifications
Specification | Status | Comment |
---|---|---|
Payment Request API The definition of 'shippingaddresschange' in that specification. | Candidate Recommendation | Initial definition. |
BCD tables only load in the browser
onshippingaddresschange
event handler property
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论