第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會有你想問的

如何向用戶和商家發(fā)送詳細(xì)的 PayPal 發(fā)票?

如何向用戶和商家發(fā)送詳細(xì)的 PayPal 發(fā)票?

四季花海 2023-10-23 10:24:26
我正在開發(fā)一個(gè)包含商店的網(wǎng)站。用戶可以在這家商店使用 PayPal 付款,效果非常好!購物車是使用 JavaScript 進(jìn)行編程的,這導(dǎo)致了一些問題。我最初想要一個(gè) JS 函數(shù),向用戶發(fā)送一封帶有購物車的電子郵件,但我可以找到任何代碼。我知道您可以使用 PayPal 獲取詳細(xì)收據(jù),但我的系統(tǒng)不會向我提供這些詳細(xì)信息。我已經(jīng)閱讀了 PayPal 網(wǎng)站的開發(fā)人員部分,但我似乎無法弄清楚!我的 PayPal 腳本如下:<script>        paypal.Buttons({            createOrder: function(data, actions) {                // This function sets up the details of the transaction, including the amount and line item details.                return actions.order.create({                    purchase_units: [{                        amount: {                            value: countCartTotal()                        }                    }]                });            },            onApprove: function(data, actions) {                // This function captures the funds from the transaction.                return actions.order.capture().then(function(details) {                    // This function shows a transaction success message to your buyer.                    window.location.href = "orderConfirmed.php"                    clearCart()                });            }        }).render('#paypal-button-container');        //This function displays Smart Payment Buttons on your web page.    </script>購物車在 cart.js 中編碼,我知道我可以在 PayPal 腳本中使用此文件中的函數(shù),因?yàn)楹瘮?shù)“countCartTotal()”告訴 PayPal 向客戶收取的金額。在我的購物車?yán)?。?Node.js 中,這就是我將商品添加到購物車的方式:我需要讓 Paypal 包含“${product.name}”和“${product.quantity}”
查看完整描述

1 回答

?
一只甜甜圈

TA貢獻(xiàn)1836條經(jīng)驗(yàn) 獲得超5個(gè)贊

項(xiàng)目進(jìn)入purchase_units數(shù)組,記錄在 v2/orders 中。理解所有必需的細(xì)分參數(shù)可能很困難,這些參數(shù)必須相加,否則結(jié)帳將出錯(cuò)并且無法打開 - 所以這里是一個(gè)包含兩個(gè)項(xiàng)目的示例:

"purchase_units": [{

? ? ? "description": "Stuff",

? ? ? "amount": {

? ? ? ? "value": "20.00",

? ? ? ? "currency_code": "USD",

? ? ? ? "breakdown": {

? ? ? ? ? "item_total": {

? ? ? ? ? ? "currency_code": "USD",

? ? ? ? ? ? "value": "20.00"

? ? ? ? ? },

? ? ? ? }

? ? ? },

? ? ? "items": [

? ? ? ? {

? ? ? ? ? "unit_amount": {

? ? ? ? ? ? "currency_code": "USD",

? ? ? ? ? ? "value": "10.00"

? ? ? ? ? },

? ? ? ? ? "quantity": "1",

? ? ? ? ? "name": "Item 1",

? ? ? ? },

? ? ? ? {

? ? ? ? ? "unit_amount": {

? ? ? ? ? ? "currency_code": "USD",

? ? ? ? ? ? "value": "10.00"

? ? ? ? ? },

? ? ? ? ? "quantity": "1",

? ? ? ? ? "name": "Item 2",

? ? ? ? },

? ? ? ],

? ? }

? ]


查看完整回答
反對 回復(fù) 2023-10-23
  • 1 回答
  • 0 關(guān)注
  • 193 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號