Laravel 4中是否包含bootstrap?

时间:2015-01-06 07:30:21

标签: twitter-bootstrap laravel laravel-4

我的laravel应用程序中有“bootstrap”子文件夹,这是否意味着引导程序包含在Laravel中?

3 个答案:

答案 0 :(得分:2)

您可以在项目文件夹中使用twitter bootstrap,但是如果要使用bootstrap的所有样式和库,则需要在master.blade中包含 .js 。 css 引导程序文件

示例:

{{ HTML::script('http://public/assets/js/bootstrap.3.0.0.min.css') }} // This include all the css files of bootstrap.

{{ HTML::script('http://public/assets/js/bootstrap.3.0.0.min.js') }} // This include rapall the functionalities of bootstrap

当然,您需要添加自己的引导程序文件和路径。

一旦你包含.js和.css,就可以使用bootstrap的所有工作人员:

<button type="button" class="btn btn-info">Save</button>

班级 btn btn-info 这是一种引导风格。

答案 1 :(得分:1)

没有。 bootstrap不只是指Twitter Bootstrap。来自Wikipedia

  

一般来说,bootstrapping通常是指a的开头   应该在没有外部的情况下进行的自我维持过程   输入。在计算机技术中的术语(通常缩短为启动)   通常是指将基本软件加载到的过程   上电或一般复位后计算机的内存,尤其是   操作系统,然后负责加载其他软件   根据需要。

注意同样在Stack Overflow上,[bootstrap]标签执行NOT refer to Twitter Bootstrap。这就是[twitter-bootstrap]标签的用途。

那究竟是什么?

bootstrap目录中的少数文件将启动,启动,初始化应用程序。

  • autoload.php vendor/autoloadcompiled.php的自动加载课程(如果可能)
  • compiled.php )预编译的框架类
  • paths.php 定义相对于bootstrap目录的重要路径
  • start.php “启动”该应用程序。环境检测,加载路径和创建容器Application
  • 的实例

答案 2 :(得分:1)

不,不是。您在laravel应用程序中看到的bootstrap文件夹包括

  • autoload.php
  • paths.php
  • start.php

了解更多关于laravel Request Lifecycle on laravel doc的信息,了解Laravel的工作原理。