补充一下解决方案:
在我的情况下,我的网站通常将投票放在主题的第一个帖子中,因此在 Rails 控制台中快速定位它的方法如下:
myPost = Topic.find_by(id: number-from-topic-url).posts.first.id
myPoll = Poll.find_by(post_id: myPost)
或者,如果你真的想在一行中完成(向右滚动查看!):
myPoll = Poll.find_by(post_id: Topic.find_by(id: number-from-topic-url).posts.first.id)
在这种情况下,当然:
myPoll.chart_type = 'pie'
myPoll.save