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

Yii开发过程中的低级错误

欢迎将你在Yii开发过程中比较容易犯的错误添加到这里.

欢迎将你在Yii开发过程中比较容易犯的错误添加到这里.

忘写 echo

在下面的视图输出中:

<h1>Edit item: php $model->label; ?>h1>

你可能会花费很多时间去测试为什么 $model->label 没有值.

错误使用 echo

在下面的视图输出中:

<h1>Edit item: php echo $this->widget('CWidget'); ?>h1>

会提示 "Object of class CWidget could not be converted to string." 类 CWidget 的对象不能转化为字符串。

规则中的数字

在模型中的 rules 方法中使用 :

array('count', 'number', 'integerOnly'=>true),

然后试试

array('count', 'numeric', 'integerOnly'=>true),

最后再使用 'numerical'.


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