在destoon的模块中新加action时要注意几点
1.在模块的my.inc.php中,这个地方一定要给新的action写进去,不然不会更新post_fields,
if (in_array($action, array('add', 'edit','batch')))
{
$FD = cache_read('fields-' . substr($table, strlen($DT_PRE)) . '.php');
if ($FD) require DT_ROOT . '/include/fields.func.php';
isset($post_fields) or $post_fields = array();
$CP = $MOD['cat_property'];
if ($CP) require DT_ROOT . '/include/property.func.php';
isset($post_ppt) or $post_ppt = array();
}
post_fields是一些下拉选择类的,post_fields中是在基本信息插入后以itemid为主键进行的更新