使用查找字段'作为'分裂我的对象

时间:2016-03-11 12:02:56

标签: php cakephp

例如,如果我这样做:

...
$parameters['fields'] = array('*','UNIX_TIMESTAMP(time_seen) as time_epoch');
$this->{$this->modelClass}->find('all', $parameters);
...

我最终会得到这样的结果:

[
  {
    "0": {
      "time_epoch": "1457623605"
    },
    "Foo": {
      "ID": "106"
      ...
    }
  },
  ...

当我希望这样的时候:

[
  {
    "Foo": {
      "time_epoch": "1457623605"
      "ID": "106"
      ...
    }
  },
  ...

我想我仍然可以使用它,因为它们共享一个父对象......但我只是喜欢这样做..

foreach ( $foos as $foo ) :
    $foo = $foo->Foo;
    ...
    print $foo['time_epoch'];
    ...
    print $foo['ID'];
    ...

比... ...

foreach ( $foos as $foo ) :
    $foo = (array)$foo; //because i can't access $foo->0
    $epoch = $foo[0]["time_epoch"];
    $foo = $foo["Foo"];
    ...
    print $epoch;
    ...
    print $foo['ID'];
    ...

1 个答案:

答案 0 :(得分:1)

这在CakePHP中是一个相当棘手的情况。通过按照您的方式编写,在"字段"因为它没有意识到这个" time_epoch"是...的一部分。

一个可能的解决方案是虚拟领域的概念。你可以尝试这样的事情:

<select ng-model="fieldObj.firstName" ng-options="member as member.firstname for member in allMembers track by member.member_id">

您可能需要查看 - Creating virtual fields on the fly

这将解决您的问题并以您期望的方式返回您的阵列。

和平!的xD