Skip to content

如何安装

如果在使用之前您并不了解如何通过这个模块实现微信支付功能,请先阅读 阅前须知

为了正常使用此支付模块,请确保您的项目是通过 NestJS 创建的。

安装依赖

powershell
npm install --save nest-wxpay
powershell
yarn add --save nest-wxpay
powershell
pnpm add --save nest-wxpay
powershell
bun add --save nest-wxpay

注册模块

ts
import { Module } from '@nestjs/common'
import { WechatModule } from 'nest-wxpay'

@Module({
  imports: [
    WechatModule.register({
      appid: '公众号的appid',
      mchid: '微信支付商户号',
      serial_no: '商户证书序列号',
      privateKey: '商户私钥'
    })
  ]
})
export class AppModule {

}