我的html代码是这样的:
我的JavaScript代码是这样的:
function showAjaxPdf(file_path) { var file_path = file_path.replace(/\\/g,"/"); //example : file_path = assets/images/myfile.pdf $.ajax({ type: "POST", data: 'file_path=' + file_path, url: "news/test", success: function(response) { $('#test').html(response); } }); }
我在控制器中的功能测试:
public function postTest(Request $request) { $file_path = $request->input('file_path'); return response()->download($file_path); }
当我单击pdf图标时,没有响应。
我希望当单击pdf图标时显示如下:
单击pdf图标时,图像如何显示?
谢谢