Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我将在 yii 框架中将我的数据库表列之一增加一个单位。我想使用 activeRecords 和 updateByAll() 函数而不是加载模型并调用 save() 方法。我该如何实现?
你能指定你想在什么时候增加列吗?
为什么不只是扩展 ActiveRecord 类并在需要增加的地方增加列,然后调用父实现。例如:
class ActiveRecord extends CActiveRecord { public updateAll($attributes, $condition='', $params=array()) { $this->incCol++; parent::updateAll($attributes, $condition, $params); } }
我是 Rails、jquery 等的新手。我创建了一个新项目,一切正常。现在我想每隔几秒刷新一个 HTML 表。
我在视图中的表格如下所示:
<table> <% @new.each do |s| %> <tr> <td><%= s.name %></td> <