我在一个名为“selectpages”的 VF 页面上,可以单击“render to pdf”按钮。按钮操作旨在简单地将另一个 VF 页面呈现到附件,如下所示 -
附件 ax = new attachment(name = filenameToUse, parentid = quot.id);
PageReference bl = Page.tc_report;
bl.getParameters().put('q',qid);
bl.setRedirect(true);
Blob b = bl.getContent(); // this is returning blob from current page, not page tc_report...
ax.Body = b;
insert ax;
那么为什么生成的附件包含很好地呈现为 pdf 的“selectpages”而不是 tc_report 页面?...
希望这是一个快速的 - 让我感到困惑,希望有人把我夹在耳朵上,因为我错过了一些明显的东西。