javascript代码实例教程-YII 把yii多层对象转成数组和统一json返回值

发布时间:2019-02-07 发布网站:脚本宝典
脚本宝典收集整理的这篇文章主要介绍了javascript代码实例教程-YII 把yii多层对象转成数组和统一json返回值脚本宝典觉得挺不错的,现在分享给大家,也给大家做个参考。
小宝典致力于为广大程序猿(媛)提供高品质的代码服务,请大家多多光顾小站,小宝典在此谢过。 public function convertModelToArray($models, array $filterAttributes = null) {
if (is_array($models))
$arrayMode = TRUE;
else {
$models = array($models);
$arrayMode = FALSE;
}
$result = array();
foreach ($models as $model) {
$attributes = $model->getAttributes();
if (isset($filterAttributes) && is_array($filterAttributes)) {
foreach ($filterAttributes as $key => $value) {
if (strtolower($key) == strtolower($model->tableName()) && strpos($value, '*') === FALSE) {
$value = str_replace(' ', '', $value);
$arrColumn = explode(",", $value);
foreach ($attributes as $key => $value)
if (!in_array($key, $arrColumn))
unset($attributes[$key]);
}
}
}
$relations = array();
foreach ($model->relations() as $key => $related) {
if ($model->hasRelated($key)) {
if(($model->$key instanceof CModel) || is_array($model->$key)){
$relations[$key] = self::convertModelToArray($model->$key, $filterAttributes);
} else {
$relations[$key] = $model->$key;
}
}
}
$all = array_merge($attributes, $relations);
if ($arrayMode)
array_push($result, $all);
else
$result = $all;
}
return $result;

}

$this->_sendResponse(array('errorCode'=>int,'errorMessage'=>'','data'=>array());

public function _sendResponse($attr = array(), $ct=self::CONTENT_TYPE_JSON) {
if ($ct === self::CONTENT_TYPE_JSON){
header("Content-type:application/json");
} else {
header("Content-type:text/plain");
}
$response = array();
$response['errorCode'] = isset($attr['errorCode'])? $attr['errorCode'] : ApiError::ERROR_OK;
$response['errorMessage'] = empty($attr['errorMessage'])? ApiError::getErrorMessage($response['errorCode']) : $attr['errorMessage'];
$response['data'] = empty($attr['data']) ? null : $attr['data'];
echo CJSON::encode($response);
Yii::app()->end();
}

觉得可用,就经常来吧! 脚本宝典 欢迎评论哦! js脚本,巧夺天工,精雕玉琢。小宝典献丑了!

脚本宝典总结

以上是脚本宝典为你收集整理的javascript代码实例教程-YII 把yii多层对象转成数组和统一json返回值全部内容,希望文章能够帮你解决javascript代码实例教程-YII 把yii多层对象转成数组和统一json返回值所遇到的问题。

如果觉得脚本宝典网站内容还不错,欢迎将脚本宝典推荐好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。