(Grails)GSP与semanticui

时间:2015-10-31 11:19:03

标签: html grails gsp semantic-ui

这就是我的文件夹的样子

enter image description here

我有两个文件,一个是gsp,一个是html,这是两个完全相同的代码

<html>
<head>
<link rel="stylesheet" type="text/css" href="dist/semantic.min.css">
<script src="semantic/semantic.min.js"></script>
</head>
<body>
    haluaw
    <button class="ui primary button">
  Save
</button>
<button class="ui button">
  Discard
</button>
</body>
</html>

这就是gsp的样子

enter image description here

这就是它在html中的样子

enter image description here

为什么它在gsp中不起作用,而它在html中工作..它的文件夹和代码相同

1 个答案:

答案 0 :(得分:1)

这是因为CSS的路径对于gsp来说是错误的。 html文件查找文件夹结构,并找到CSS文件。但是,Grails应用程序在服务器URL上查找css文件。

您应该将CSS和js文件放在grails应用程序的webapp文件夹中,并提供正确的URL路径。