微信生成二维码中传入的参数不生效
linmufeng326 opened this issue · 1 comments
linmufeng326 commented
微信官方要求的数据结构是这样的
"action_name": "QR_LIMIT_STR_SCENE",
"action_info": {
"scene": {
"scene_str": "test"
}
}
}```
而代码里面的数据结构是这样的:
```{
"action_name": "QR_LIMIT_STR_SCENE",
"action_info": null,
"scene_str": "test"
}```
数据不合规导致bug产生,在QrCodeRequest类中重新定义一下数据结构就好