最赞回答 / 慕粉2218227327
你这样实例化模型试一下, $indexModel = new \Home\Model\IndexModel(); $indexModel->responseMsg($postObj); 要是还是不行,在model层中加上namespace Home\Model;use Think\Model;再试一下
2017-08-24
最新回答 / 慕粉2102372233
补充问题 /helloworld.php/index/http_curl 一直Not FoundThe requested URL /helloworld.php/index/http_curl was not found on this server.
2017-08-23
最新回答 / Microshan
以windows下的php+apache为例 首先,打开php.ini,找到“extension=php_curl.dll”,然后去掉前面的“;”注释,重启apache即可。 如果还出现此类问题,先检查php.ini的extension_dir值是哪个目录,在那个目录下检查有无php_curl.dll,没有的话请下载php_curl.dll,再把php目录中的libeay32.dll和ssleay32.dll拷到c:\windows\system32里面,重启apache,OK!
2017-07-18
最赞回答 / 慕运维201543
$postArr = isset($GLOBALS['HTTP_RAW_POST_DATA']) ? $GLOBALS['HTTP_RAW_POST_DATA'] : file_get_contents("php://input"); //最佳解决方式,适用tp所有版本
2017-07-06