如何在joomla版本3.x中获取发布数据

时间:2016-04-16 08:20:41

标签: php post joomla http-post postdata

尝试在joomla中使用1POST获取数据:

header('content-type: application/json; charset=utf-8');
header('enctype="multipart/form-data" method="post"');
header('HTTP/1.1 200 OK');
$jinput = JFactory::getApplication()->input;
$catid =  $jinput->post->getint('catid', 0);

但它总是返回0 当我尝试时:

$catid = $jinput->getint('catid',0);

它可以通过GET接收但不适用于POST

如何修复它以使用POST

0 个答案:

没有答案