我有一个小小的发行版'系统基于2台服务器。 app A是用python编写的,我希望它能访问我的基础程序B中的控制器(用codeigniter编写)。我写了以下控制器' data_controller'在B中包含:
function index()
{
$t = R::findOne('times');
$postArray = $t->export();
}
我正在使用redbeanphp ORM。上面的代码从db中选取一条记录,并将该行转换为键值数组。我想通过让A打开来将http发布到App A:
http:localhost/appB/index.php/data_controller
接下来我需要做什么才能将$ postArray的内容发送到App A
答案 0 :(得分:1)
您可以output the data作为JSON并拥有Python decode the data。您可以从CodeIgniter输出JSON数据,如下所示:
header('Content-Type: application/json;');
echo json_encode($postArray);