将任意对象树导入redbeans orm

时间:2015-12-13 13:09:31

标签: php redbean

当我获得客户端应用程序提供的JSON对象树时,我想使用red beans php ORM将它们存储到我的数据库中。

目前我正试图这样做

$object = json_decode($json);

// since I know that the input should be of class, let's say, "PRODUCT"
// I can handle the data recursivly and store child object as beans
// through red beans

$ProductController = new ProductController();
return $ProductController->_store($object);

(ProductController可以递归地存储任意对象作为bean)

但是我不时会使用这种方法,我想知道我是否可以重新发明轮子。

我可以使用redbeans中的import函数还是有限制?在我的观点中,文档在这一点上并不清楚。

0 个答案:

没有答案