简体   繁体   中英

Laravel 4 Blade Templating

I've experienced an problem. When I used lets say <script src="js/app.js"></script> and things like that it was returning the error when I inspected element and went onto console in chrome, but atleast the dropdown and the scripts worked. When I changed to things like:

{{ HTML::script('http://code.jquery.com/jquery-1.10.2.js') }}
{{ HTML::script('js/bootstrap.min.js') }}
{{ HTML::script('js/prettify.js') }}
{{ HTML::script('js/scripts.js') }}
{{ HTML::script('http://twitter.github.io/bootstrap/assets/js/jquery.js') }}
{{ HTML::script('http://twitter.github.io/bootstrap/assets/js/bootstrap-transition.js') }}
{{ HTML::script('http://twitter.github.io/bootstrap/assets/js/bootstrap-alert.js') }}
{{ HTML::script('http://twitter.github.io/bootstrap/assets/js/bootstrap-modal.js') }}
{{ HTML::script('http://twitter.github.io/bootstrap/assets/js/bootstrap-dropdown.js') }}
{{ HTML::script('http://twitter.github.io/bootstrap/assets/js/bootstrap-scrollspy.js') }}
{{ HTML::script('http://twitter.github.io/bootstrap/assets/js/bootstrap-tab.js') }}
{{ HTML::script('http://twitter.github.io/bootstrap/assets/js/bootstrap-tooltip.js') }}
{{ HTML::script('http://twitter.github.io/bootstrap/assets/js/bootstrap-popover.js') }}
{{ HTML::script('http://twitter.github.io/bootstrap/assets/js/bootstrap-button.js') }}
{{ HTML::script('http://twitter.github.io/bootstrap/assets/js/bootstrap-collapse.js') }}
{{ HTML::script('http://twitter.github.io/bootstrap/assets/js/bootstrap-carousel.js') }}
{{ HTML::script('http://twitter.github.io/bootstrap/assets/js/bootstrap-typeahead.js') }}

it wouldn't work. there is no console errors when I inspect element, but the site won't load it for some reason. Has anyone experienced this?

// Jquery
{{ HTML::script('http://code.jquery.com/jquery-2.0.0.min.js') }}
// Your's scripts
{{ HTML::script('/js/bootstrap.min.js') }}
{{ HTML::script('/js/prettify.js') }}
{{ HTML::script('/js/scripts.js') }}
// Twitter bootstrap
{{ HTML::script('http://twitter.github.io/bootstrap/assets/js/bootstrap-transition.js') }}
{{ HTML::script('http://twitter.github.io/bootstrap/assets/js/bootstrap-alert.js') }}
{{ HTML::script('http://twitter.github.io/bootstrap/assets/js/bootstrap-modal.js') }}
{{ HTML::script('http://twitter.github.io/bootstrap/assets/js/bootstrap-dropdown.js') }}
{{ HTML::script('http://twitter.github.io/bootstrap/assets/js/bootstrap-scrollspy.js') }}
{{ HTML::script('http://twitter.github.io/bootstrap/assets/js/bootstrap-tab.js') }}
{{ HTML::script('http://twitter.github.io/bootstrap/assets/js/bootstrap-tooltip.js') }}
{{ HTML::script('http://twitter.github.io/bootstrap/assets/js/bootstrap-popover.js') }}
{{ HTML::script('http://twitter.github.io/bootstrap/assets/js/bootstrap-button.js') }}
{{ HTML::script('http://twitter.github.io/bootstrap/assets/js/bootstrap-collapse.js') }}
{{ HTML::script('http://twitter.github.io/bootstrap/assets/js/bootstrap-carousel.js') }}
{{ HTML::script('http://twitter.github.io/bootstrap/assets/js/bootstrap-typeahead.js') }}

If the problem is still, please give a screenshot of the debugger - laravel.

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