add clear

This commit is contained in:
as2252258@163.com
2020-03-17 13:01:47 +08:00
parent a7bce22f0c
commit 809246f50e
+2 -2
View File
@@ -32,7 +32,7 @@ class Tag extends AfficialAccount
$this->request->setErrorField('errcode');
$this->request->setErrorMsgField('errmsg');
$this->request->setData(json_encode($params));
$this->request->setData(json_encode($params, JSON_UNESCAPED_UNICODE));
return $this->request->post($this->generate_url . $config);
}
@@ -88,7 +88,7 @@ class Tag extends AfficialAccount
$this->request->setErrorField('errcode');
$this->request->setErrorMsgField('errmsg');
$this->request->setData(json_encode($url));
$this->request->setData(json_encode($url, JSON_UNESCAPED_UNICODE));
return $this->request->post($this->user_batch_add_tag . $config);
}