简体   繁体   中英

laravel blade variable inside javascript

I tried to access variable inside blade syntax:

            success: function(resp) {
                console.log(resp)
                var MsgClass = 'alert-danger';
                $("#overlay").hide();
                if(resp.success) {
                    MsgClass = 'alert-success';
                    window.location.href = "{{ asset('public/exports/'+resp.filename) }}"
                }                    
            },

But I get

Use of undefined constant resp - assumed 'resp'

How can I get this variable inside the syntax?

Just use like this

window.location.href = '"{{url('')}}/public/exports/"'+resp.filename

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM