소스 검색

Merge remote-tracking branch 'origin/master'

master
huangjiajun 1 년 전
부모
커밋
633a5dbdc8
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. +4
    -0
      lib/local_wechat/api.go

+ 4
- 0
lib/local_wechat/api.go 파일 보기

@@ -179,6 +179,10 @@ func TradePcPay(client *wechat.Client, subject, orderID, amount, notifyUrl, prod

// TradeMiniProgPay is 微信小程序支付 ☑️
func TradeMiniProgPay(client *wechat.Client, subject, orderID, amount, notifyUrl, openid string) (map[string]string, error) {
if len(subject) > 127 {
tmpSubject := []rune(subject)
subject = string(tmpSubject[0:44])
}
// 初始化 BodyMap
bm := make(gopay.BodyMap)
bm.Set("nonce_str", util.GetRandomString(32)).


불러오는 중...
취소
저장