这是我在这里的第一个问题,所以请耐心等待我:)
我偶然发现了填充对象的奇怪行为。
我开始将objectQuery::create()-> ... ->find()
项目中使用的方法转换为,$c = new Criteria(), $c-> ... objectPeer::doSelect($c)
因为有人告诉我,当条件可以使用时,不应该使用查询。
我有一个函数,它返回商店中所有商品的价格。或者至少做到了。我无法弄清楚的是:
旧代码:
static public function shopGetPrices($id){
$prices = itemPriceQuery::create()->
addJoin(itemPricePeer::ITEM_ID, itemPeer::ID, Criteria::LEFT_JOIN)->
addJoin(itemPeer::CATEGORY_ID, categoryPeer::ID, Criteria::LEFT_JOIN)->
addJoin(categoryPeer::SHOP_ID, shopPeer::ID, Criteria::LEFT_JOIN)->
add(shopPeer::ID, $id)->find();
return $prices;
}
返回正确填充的PropelObjectCollection
对象,通过它我可以使用 foreach,并获取/设置我需要的 itemPrice 对象和属性。
现在,新代码:
static public function shopGetPrices($id){
$c = new Criteria();
$c->addJoin(itemPricePeer::ITEM_ID, itemPeer::ID, Criteria::LEFT_JOIN)->
addJoin(itemPeer::CATEGORY_ID, categoryPeer::ID, Criteria::LEFT_JOIN)->
addJoin(categoryPeer::SHOP_ID, shopPeer::ID, Criteria::LEFT_JOIN)->
add(shopPeer::ID, $id);
return self::DoSelect($c);
}
返回一个对象数组itemPrice
,但它们通过连接填充了与 itemPrice 对象相关的项目值。这意味着:当我称之为print_r(self::DoSelect($c));
打印时
Array
(
[0] => ItemPrice Object
(
[startCopy:protected] =>
[id:protected] => 47 <- id of joined item
[item_id:protected] => 9 <-foreign key to category object of joined item
[price:protected] => 0
[unit:protected] => Axe <- name of item, not unit (unit is like 'golden', 'iron', 'wood' or whatever )
[active:protected] =>
[collItemsOrder:protected] =>
[collItemsOrderPartial:protected] =>
[alreadyInSave:protected] =>
[alreadyInValidation:protected] =>
[polozkyObjednavkasScheduledForDeletion:protected] =>
[prisadyPolozkyObjednavkasScheduledForDeletion:protected] =>
[validationFailures:protected] => Array()
[_new:protected] =>
[_deleted:protected] =>
[modifiedColumns:protected] => Array()
[virtualColumns:protected] => Array()
)
[1] => ItemPrice Object
(
...等等。
标准和查询对象之间可能存在一些我遗漏的关键区别。我在 Google、StackOverflow 上进行了搜索,谁知道在哪里,但我没有找到任何类似的解决方案。
这个家伙/女孩有一个模糊的相似问题,但我没有使用addSelectColumn
我的标准,所以这对我来说是另一个死胡同。
谁能指出我正确的方向?