Coder Social home page Coder Social logo

Comments (10)

design-class avatar design-class commented on July 23, 2024 4

Try reload page when alert window closes
For example
swal({...})
.then(function(){
window.location.reload(window.location.href);
});

from sweet-alert.

uxweb avatar uxweb commented on July 23, 2024 1

@izcream @jolusadev Hi, this is related to how the data is passed to the laravel session driver.

A way to solve this is by forget the message after displaying it:

@if (Session::has('sweet_alert.alert'))
    <script>
        swal({!! Session::get('sweet_alert.alert') !!});
    </script>

    {{ Session::forget('sweet_alert.alert') }}    // This will forget the alert data after displaying it :)
@endif

from sweet-alert.

uxweb avatar uxweb commented on July 23, 2024 1

This is an issue related on how the browser's cache and cookies work, i think is not an issue with Laravel neither the package.

from sweet-alert.

eng-ahmednasser avatar eng-ahmednasser commented on July 23, 2024 1

Try this
<script> if (window.performance) { var navEntries = window.performance.getEntriesByType('navigation'); if (navEntries.length > 0 && navEntries[0].type === 'back_forward') { console.log('As per API lv2, this page is load from back/forward'); } else if (window.performance.navigation && window.performance.navigation.type == window.performance.navigation.TYPE_BACK_FORWARD) { console.log('As per API lv1, this page is load from back/forward'); } else { console.log('This is normal page load'); @if (Session::has('sweet_alert.alert')) swal( {!! Session::get('sweet_alert.alert') !!} ); {{ Session::forget('sweet_alert.alert') }} // This will forget the alert data after displaying it :) @endif } } else { console.log("Unfortunately, your browser doesn't support this API"); } </script>

from sweet-alert.

jolusadev avatar jolusadev commented on July 23, 2024

I have the same problem. When I press the back button without edit some item I get the sweetalert.

from sweet-alert.

jolusadev avatar jolusadev commented on July 23, 2024

Thanks for your anwser. That code not work for me. I think is a navigator cache problem with sessions.

from sweet-alert.

izcream avatar izcream commented on July 23, 2024

i tried that code but isn't work for me too.

from sweet-alert.

AdamEsterle avatar AdamEsterle commented on July 23, 2024

@uxweb Probably is still here.

Back button just re-runs the JS in cache (so SWAL shows again)

Maybe there should be a default functionality to "show once" somehow - not sure though... perhaps set a variable

var shown = false

if(!shown){
display SWAL
shown = true
}

Not sure if that var will keep scope though after you press the back button...??

from sweet-alert.

hasanlq69 avatar hasanlq69 commented on July 23, 2024

So what the best solution to solve this problem?

from sweet-alert.

hiski46 avatar hiski46 commented on July 23, 2024

this is work with blade in laravel 8

from sweet-alert.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.