控制器操作方法的原始输出
我想在不使用模板的情况下输出一些文本。现在我有一个控制器操作方法,它改变响应的内容类型,我想直接显示文本,而不创建模板文件(单行模板文件是无用的)。
I want to output some text without using a template. Right now I have a controller action method that's altering the Content-Type of the response and I want to display the text directly, without creating a template file (a single-line template file is useless).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
render :text
在 Rails 2.3 中:因此:
应该执行您的操作想。
同样的事情也适用于 Rails 3。
You can use
render :text
in Rails 2.3:So this:
should do what you want.
The same thing works in Rails 3.