从另一个action Rails调用action来保存pdf文件

发布于 2024-10-30 21:20:04 字数 403 浏览 3 评论 0原文

我有一个用大虾生成pdf的操作,

def savepdfs
  respond_to do |format|
    format.pdf {} # Create PDF file and saves in /pdf/print.pdf.
    logger.info ":::::::::::::::::  PDF COVER PAGE CREATED  :::::::::::::::::"
  end
end

我不想向用户显示pdf。相反,我只想从另一个操作中调用它,

def mainaction
    #I want to call something like savepdfs(:format => :pdf)
end

我该怎么做?

I have an action to generate pdfs with prawn

def savepdfs
  respond_to do |format|
    format.pdf {} # Create PDF file and saves in /pdf/print.pdf.
    logger.info ":::::::::::::::::  PDF COVER PAGE CREATED  :::::::::::::::::"
  end
end

I don't want to show the pdf to the user . Instead I just want to call this from another action

def mainaction
    #I want to call something like savepdfs(:format => :pdf)
end

How do I do this ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

思念绕指尖 2024-11-06 21:20:04

将其包装为私有控制器方法

def savepdfs
  respond_to do |format|
    format.pdf { generate_pdf } # Create PDF file and saves in /pdf/print.pdf.
    logger.info ":::::::::::::::::  PDF COVER PAGE CREATED  :::::::::::::::::"
  end
end

def mainaction
  generate_pdf
end

private

def generate_pdf
  # Create PDF file and saves in /pdf/print.pdf.
end

Wrap it as a private controller method

def savepdfs
  respond_to do |format|
    format.pdf { generate_pdf } # Create PDF file and saves in /pdf/print.pdf.
    logger.info ":::::::::::::::::  PDF COVER PAGE CREATED  :::::::::::::::::"
  end
end

def mainaction
  generate_pdf
end

private

def generate_pdf
  # Create PDF file and saves in /pdf/print.pdf.
end
倦话 2024-11-06 21:20:04

这是一个 XY 问题*。您不想调用另一个操作,您想将业务逻辑放入其所属的模型中。

* http://www.perlmonks.org/index.pl?node_id=542341

This is an XY Problem*. You don't want to call another action, you want to put business logic in the model where it belongs.

* http://www.perlmonks.org/index.pl?node_id=542341

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文