json - 名称包含带字母的数字或带数字的字母,因为ng-controller未显示

时间:2017-10-26 07:30:41

标签: angularjs angularjs-scope

public function findTotalRegistered(Query $query, Array $options)
  {
    $total = $query->func()->count('id');

    $query
      ->select([
        'total' => $total,
        //'today' => $today,
        //'this_week' => $this_week,
        //'this_month' => $this_month,
        //'this_year' => $this_year
      ]);

    return $query;
  }

1 个答案:

答案 0 :(得分:0)

来自Style Guide Google:

  

JSON映射可以在键名中使用任何Unicode字符。   当JSON对象用作映射时,属性名称命名规则不适用。映射(也称为关联数组)是具有任意键/值对的数据类型,使用键来访问相应的值。 JSON对象和JSON映射在运行时看起来相同;这种区别与API的设计有关。 API文档应指明何时将JSON对象用作映射。

     

地图的键不必遵守属性名称的命名准则。映射键可以包含任何Unicode字符。客户端可以使用对于地图熟悉的方括号表示法来访问这些属性(例如,result.thumbnails [" 72"])。