热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

php–使用yii中的关系创建下拉列表

我是Yii框架中的新手,现在我尝试从相关表创建下拉列表.我有表“新闻”[…很多字段,类别]和“NewsCategories”[id,category_name].在用于在新闻中创建

我是Yii框架中的新手,现在我尝试从相关表创建下拉列表.
我有表“新闻”[…很多字段,类别]和“NewsCategories”[id,category_name].
在用于在新闻中创建新记录的表单中,当用户可以选择category_name时,我想在类别字段中创建下拉列表,但类别的id必须在新记录中记录.

请帮帮我.对不起我的英语不好.我希望我解释它是可以理解的.

这就是我创建关系的方式

型号News.php

public function relations()
{
// NOTE: you may need to adjust the relation name and the related
// class name for the relations automatically generated below.
return array(
'category'=>array(self::BELONGS_TO, 'NewsCategories', 'category'),
);
}

Model NewsCategories.php

public function relations()
{
// NOTE: you may need to adjust the relation name and the related
// class name for the relations automatically generated below.
return array(
'news'=>array(self::HAS_MANY, 'News', 'id'),
);
}

以及我如何尝试创建下拉列表:

dropDownList($model,'category',CHtml::listdata(News::model()->with('category')->findAll(),'id','category_name'),array('empty'=>'(Select a category')));?>

解决方法:

指定关系时,您不需要指定主键(id),因为yii可以从模型中扣除主键.您只需指定另一端,因此您的NewsCategory关系应如​​下所示:

'news'=>array(self::HAS_MANY, 'News', 'category'),

要获取适合下拉列表的数据,请使用

CHtml::listData(NewsCategories::model()->findAll(), 'id', 'category_name');


推荐阅读
author-avatar
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有