我正在考慮以模態打開pdf文件。目前正在使用在modal中打開pdf文件可能嗎?
@Html.ActionLink("open file", "Download")
打開另一個窗口。我想它填充到一個div,以便我可以在模態或覆蓋查看。
我確定jquery解決方案以及目前我的jQuery返回一些字節字符。
function openfile() {
$.ajax({
url: '@Url.Action("Download", "mycontroller")',
type: "POST",
dataType: "application/pdf",
success: function (data) {
$('#showpdf').html(data);
},
error: function (err) {
alert(err)
}
});
}
動作控制器:
public ActionResult Download()
{
string path = HttpContext.Server.MapPath("/pdf/service_reports/SR26175.pdf");
return File(path, "application/pdf");
}
這是不可能成格,只有另一個窗口或圖像 – 2017-04-19 06:30:52
所以我把'',把PDF中的圖像中,放置在該圖像中DIV? –
哈哈 - 不要。您可以將'PDF'轉換爲'IMG',並將IMG轉換爲'base64'數據格式,然後顯示在''內。 – 2017-04-19 06:36:30