Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/loops/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Twitter bootstrap 引导未加载(Thymeleaf)_Twitter Bootstrap_Spring Boot_Thymeleaf - Fatal编程技术网

Twitter bootstrap 引导未加载(Thymeleaf)

Twitter bootstrap 引导未加载(Thymeleaf),twitter-bootstrap,spring-boot,thymeleaf,Twitter Bootstrap,Spring Boot,Thymeleaf,具有以下代码时不加载样式: <div class="container"> <div class="w-50"> <div class="border border-info"> <div><h3 class="font-weight-bold" th:text="${post.title}"></h3></div >

具有以下代码时不加载样式:

<div class="container">     
    <div class="w-50">  
        <div class="border border-info"> 
            <div><h3 class="font-weight-bold" th:text="${post.title}"></h3></div >          
            <div><span>Category: </span><span th:text="${post.category}"></span></div>
            <div  th:text="${post.content}"></div >
            <div><span>Author: </span><span  th:text="${post.signature}"></span></div >     
            <div  th:text="${#dates.format(post.date, 'dd-MM-yyyy')}"></div >                   
        </div>
    </div>
</div>

类别:
作者:
页面正确加载以下代码:

<div class="container">     
    <div class="w-50">              
        <div class="border border-info" >
            <div><h3 class="font-weight-bold" ></h3></div >         
            <div><span>Category: </span><span ></span></div>
            <div  ></div >
            <div><span>Author: </span><span></span></div >      
            <div  ></div >      
    </div>
    </div>
</div>

类别:
作者:

有人能帮你解决这个对象的问题吗?

这个问题可能是因为你没有使用Thymleaf的语法来链接样式表

尝试更改:

<link rel="stylesheet" type="text/css" href="webjars/bootstrap/4.0.0-beta.2/css/bootstrap.min.css" /> 

致:


问题可能是因为您没有使用Thymleaf的语法来链接样式表

尝试更改:

<link rel="stylesheet" type="text/css" href="webjars/bootstrap/4.0.0-beta.2/css/bootstrap.min.css" /> 

致:



您能否定义不加载的样式的含义?您是说您没有看到正在应用引导样式,还是样式表未能加载?样式未应用样式表的链接是什么样子的?您能否定义“样式未加载”的含义?您是说您没有看到正在应用引导样式还是样式表无法加载?样式未应用样式表的链接是什么样子的?