- 63浏览
- 2023-04-10
3.X中的实现方法如下:
$Model = D('User');
$Model->create();
$Model->add();
在仔细阅读了TP5文档后,发现有这么一段:欣喜之余便测试了一下,发现返回的内容是个类,不能直接做修改,只能接着连贯操作:
app\category\model\Category Object
(
[connection:protected] => Array
(
)
[name:protected] => Category
[table:protected] =>
[class:protected] => app\category\model\Category
[pk:protected] =>
[error:protected] =>
[validate:protected] =>
[field:protected] => Array
(
)
[visible:protected] => Array
(
)
[hidden:protected] => Array
(
)
[append:protected] => Array
(
)
[data:protected] => Array
(
[title] => dd
[sort] => 1
[pcid] => 0
)
[change:protected] => Array
(
)
[auto:protected] => Array
(
)
[insert:protected] => Array
(
)
[update:protected] => Array
(
)
[autoWriteTimestamp:protected] =>
[createTime:protected] => create_time
[updateTime:protected] => update_time
[deleteTime:protected] => delete_time
[dateFormat:protected] => Y-m-d H:i:s
[type:protected] => Array
(
)
[isUpdate:protected] =>
[updateWhere:protected] =>
[relation:protected] =>
[failException:protected] =>
)
仔细看了一下,当中有这么一段是我post的数据:
[data:protected] => Array
(
[title] => dd
[sort] => 1
[pcid] => 0
)
翻看了一下tp5的model类,有这么一个方法:
/**
* 获取对象原始数据 如果不存在指定字段返回false
* @access public
* @param string $name 字段名 留空获取全部
* @return mixed
* @throws InvalidArgumentException
*/
public function getData($name = null)
{
if (is_null($name)) {
return $this->data;
} elseif (array_key_exists($name, $this->data)) {
return $this->data[$name];
} else {
throw new InvalidArgumentException('property not exists:' . $this->class . '->' . $name);
}
}
调用了一下,果然可以获取到post的数组了。实现代码如下:
$data = new Category($_POST);
$data = $data->getData();
版权声明:
1、本文系转载,版权归原作者所有,旨在传递信息,不代表看本站的观点和立场。
2、本站仅提供信息发布平台,不承担相关法律责任。
3、若侵犯您的版权或隐私,请联系本站管理员删除。
4、本文由会员转载自互联网,如果您是文章原创作者,请联系本站注明您的版权信息。