支付日志参数优化

feat/task1-c-wallet
Devil 2021-10-07 00:09:06 +08:00
parent 0591348acd
commit 9f07923735
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ class PayRequestLogService
// 日志主数据
$data = [
'business_type' => $business_type,
'request_params' => empty($params) ? '' : (is_array($params) ? json_encode($params, JSON_UNESCAPED_UNICODE) : $params),
'request_params' => empty($params) ? '' : (is_array($params) ? json_encode($params, JSON_UNESCAPED_UNICODE) : htmlspecialchars_decode($params)),
'response_data' => '',
'business_handle' => '',
'request_url' => $behavior_obj->GetUrl('request'),