我感谢您的帮助。我在部分 _article.html.erb 中有一个函数。它在脚本标签内有一个功能。该函数有一个参数数据。数据将是 Article 对象的 id。有了这个id,我想得到文章的名称和描述。如何使用此数据参数来评估 Article 对象的其他字段?而且,请原谅我的问题和示例代码的布局。
<script type="text/javascript">
var socket = io.connect('http://127.0.0.1:8000');
socket.on('news', function (data) {
$('#test').html(
'<table><tr><td>' + data +
'</td><td><a href="/articles/' + data +
'">Show</td><td><a href="/articles/' + data +
'/edit">Edit</td><tr></table>'
);
});
</script>
更新:rails db迁移中定义的文章:
class CreateArticles < ActiveRecord::Migration
def change
create_table :articles do |t|
t.string :name
t.text :desc
t.timestamps
end
end
end
在模型中:
class Article < ActiveRecord::Base
attr_accessible :desc, :name
end