如何通过 prestashop 中的 init() 函数检查字段是否在 $_POST[''] 中?
我的控制器中有以下代码:
$insertData = array(
'app_id' => 1,
'app_name' => 'google plus',
'status' => 0,
'title' => 'google title'
);
db::getInstance()->insert("你的表名", $insertData);
在我看来,我有以下按钮:
<button name="avant_btn" id="avant_btn" type="button" style="width: 65px; height: 65px;" >Avant</button>
要在单击按钮时执行添加操作,必须将 POST 添加到按钮(只需发送一些表单),然后在 init() 函数中检查该字段是否在 $_POST['']
所以做了一些搜索如何在没有结果的情况下检查init函数中的字段,希望帮助并提前谢谢你