在 Rails 中放置用户定义的类的位置
I'm trying to to use this class
http://robbyonrails.com/articles/2005/05/11/parsing-a-rss-feed
but am not sure where to place the file so that it functions like a helper.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Rails 中哪里放置用户定义的类?到 lib 目录
到您的特定 RssReader 类问题。
该页面上编写的最佳代码位于 Veez (2008 年 7 月 30 日) 的评论中。最终代码应如下所示(未经测试)
在控制器
视图中(从 HAML 中的注释重写为 ERB)
观看 RSS::Parser.parse 参数了解详细信息。
我认为,RSS feed阅读器应该是Rails中的模型。 Travis on Rails(阅读评论,不需要使用open方法)。
Where To Put User-defined Classes in Rails ? To lib directory
To your specific RssReader class question.
The best code written on that page is in comment from Veez (30.7.2008). Final code should look like this (not tested)
In controller
In view (rewritten from comment in HAML to ERB)
Watch RSS::Parser.parse parameters for details.
I think, rss feed reader should be Model in Rails. Very simple RSS feed reader is described by Travis on Rails (read comments, you don't need to use open method).