Laravel create PDF with ajax
up vote
0
down vote
favorite
I use barryvdh to create pdf file. But I wanna make some interactive page to user which is for example "Please wait" while creating PDF and disable the pdf button, and then enable the button again when create PDf is finish.
so this is my controller :
$pdf = PDF::loadView('panel.invoice.pdf', $data)->setWarnings(false)->setPaper('a4', 'portrait');
$pdf->save(storage_path($code['code'].'.pdf'));
return response()->file(storage_path($code['code'].'.pdf'));
and this is my ajax :
$(document).off('click', '.pdf').on('click', '.pdf', function(e){
disBtn(btn_saving);
loadItem(selector);
$.ajax({
url: 'invoice/pdf',
type: "POST",
data: new FormData( $('#list_form')[0]),
contentType: false,
dataType: "json",
cache: false,
processData:false,
success : function ( response ) {
finishload(selector);
location.reload();
},
error : function ( jqXhr, response, errorThrown ) {
}
});
});
but the pdf view doesn't appear if I do this with ajax and stuck, but the response is 200.
and then, what should I do about the file in storage? how can I delete the pdf file after user download from pdf view?
delete without this :
"return response()->download(storage_path($code['code'].'.pdf'))->deleteFileAfterSend(true);"
ajax pdf laravel-5.5 dompdf
add a comment |
up vote
0
down vote
favorite
I use barryvdh to create pdf file. But I wanna make some interactive page to user which is for example "Please wait" while creating PDF and disable the pdf button, and then enable the button again when create PDf is finish.
so this is my controller :
$pdf = PDF::loadView('panel.invoice.pdf', $data)->setWarnings(false)->setPaper('a4', 'portrait');
$pdf->save(storage_path($code['code'].'.pdf'));
return response()->file(storage_path($code['code'].'.pdf'));
and this is my ajax :
$(document).off('click', '.pdf').on('click', '.pdf', function(e){
disBtn(btn_saving);
loadItem(selector);
$.ajax({
url: 'invoice/pdf',
type: "POST",
data: new FormData( $('#list_form')[0]),
contentType: false,
dataType: "json",
cache: false,
processData:false,
success : function ( response ) {
finishload(selector);
location.reload();
},
error : function ( jqXhr, response, errorThrown ) {
}
});
});
but the pdf view doesn't appear if I do this with ajax and stuck, but the response is 200.
and then, what should I do about the file in storage? how can I delete the pdf file after user download from pdf view?
delete without this :
"return response()->download(storage_path($code['code'].'.pdf'))->deleteFileAfterSend(true);"
ajax pdf laravel-5.5 dompdf
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I use barryvdh to create pdf file. But I wanna make some interactive page to user which is for example "Please wait" while creating PDF and disable the pdf button, and then enable the button again when create PDf is finish.
so this is my controller :
$pdf = PDF::loadView('panel.invoice.pdf', $data)->setWarnings(false)->setPaper('a4', 'portrait');
$pdf->save(storage_path($code['code'].'.pdf'));
return response()->file(storage_path($code['code'].'.pdf'));
and this is my ajax :
$(document).off('click', '.pdf').on('click', '.pdf', function(e){
disBtn(btn_saving);
loadItem(selector);
$.ajax({
url: 'invoice/pdf',
type: "POST",
data: new FormData( $('#list_form')[0]),
contentType: false,
dataType: "json",
cache: false,
processData:false,
success : function ( response ) {
finishload(selector);
location.reload();
},
error : function ( jqXhr, response, errorThrown ) {
}
});
});
but the pdf view doesn't appear if I do this with ajax and stuck, but the response is 200.
and then, what should I do about the file in storage? how can I delete the pdf file after user download from pdf view?
delete without this :
"return response()->download(storage_path($code['code'].'.pdf'))->deleteFileAfterSend(true);"
ajax pdf laravel-5.5 dompdf
I use barryvdh to create pdf file. But I wanna make some interactive page to user which is for example "Please wait" while creating PDF and disable the pdf button, and then enable the button again when create PDf is finish.
so this is my controller :
$pdf = PDF::loadView('panel.invoice.pdf', $data)->setWarnings(false)->setPaper('a4', 'portrait');
$pdf->save(storage_path($code['code'].'.pdf'));
return response()->file(storage_path($code['code'].'.pdf'));
and this is my ajax :
$(document).off('click', '.pdf').on('click', '.pdf', function(e){
disBtn(btn_saving);
loadItem(selector);
$.ajax({
url: 'invoice/pdf',
type: "POST",
data: new FormData( $('#list_form')[0]),
contentType: false,
dataType: "json",
cache: false,
processData:false,
success : function ( response ) {
finishload(selector);
location.reload();
},
error : function ( jqXhr, response, errorThrown ) {
}
});
});
but the pdf view doesn't appear if I do this with ajax and stuck, but the response is 200.
and then, what should I do about the file in storage? how can I delete the pdf file after user download from pdf view?
delete without this :
"return response()->download(storage_path($code['code'].'.pdf'))->deleteFileAfterSend(true);"
ajax pdf laravel-5.5 dompdf
ajax pdf laravel-5.5 dompdf
asked Nov 8 at 4:07
Almaida Jody
72111
72111
add a comment |
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53201425%2flaravel-create-pdf-with-ajax%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown