...
|
...
|
@@ -32,16 +32,15 @@ class LoadController extends HomeBaseController |
|
|
}
|
|
|
public function notify(){
|
|
|
|
|
|
$param = $_POST['RequestData'];
|
|
|
// if(empty($param['RequestType'])){
|
|
|
// $this->error('error');
|
|
|
// }
|
|
|
// if($param['RequestType'] != 101){
|
|
|
// $this->error('error');
|
|
|
// }
|
|
|
cache('param',$param);
|
|
|
exit();
|
|
|
$result = json_decode($param['RequestData'],true);
|
|
|
$RequestType = $_POST['RequestType'];
|
|
|
$RequestData = $_POST['RequestData'];
|
|
|
if(empty($RequestType)){
|
|
|
$this->error('error');
|
|
|
}
|
|
|
if($RequestType != 101){
|
|
|
$this->error('error');
|
|
|
}
|
|
|
$result = json_decode($RequestData,true);
|
|
|
cache('result',$result);
|
|
|
$bird = config('bird');
|
|
|
echo '{
|
...
|
...
|
|