This commit is contained in:
hujiabin 2023-06-25 19:55:41 +08:00
parent a13d1b11e6
commit d00f69ea3e
2 changed files with 3 additions and 0 deletions

View File

@ -8,8 +8,10 @@ class CallbackController extends BaseController {
public function dispatch()
{
error_log("CallbackController Begin");
$action = getReqVal('action', '');
if (key_exists($action, $this->handlers)) {
error_log("Callback:dispatch____". json_encode($_REQUEST));
$this->internalDispatch($this->handlers[$action]);
} else {
$this->_rspErr(500, 'not found');

View File

@ -14,6 +14,7 @@ class GameItemMallBuyOk {
{
$address = getReqVal('address', '');
$orderId = getReqVal('orderId', '');
error_log("GameItemMallBuyOk");
$orderDb = SqlHelper::ormSelectOne(
myself()->_getMysql($address),