0

私はGrailsが初めてです。私は 3 日前に Grails の学習を開始します。サンプル Grail アプリケーションで Twitter ブートストラップを使用したいと考えています。私はこのチュートリアルに従っています

runtime ':twitter-bootstrap:2.3.2'grails-app/conf/BuildConfig ファイルに追加しました。

これが、ブートストラップを使用する list.gsp ファイルです。

<%@ page contentType="text/html;charset=UTF-8" %>
<html>
  <head>
    <title>My Posts</title>
    <r:require modules="bootstrap"/>
  </head>
  <body>
  <g:link controller="post" action="edit">
        Create a new post
  </g:link>
  <div class="well"> 
  <h1>My Posts</h1>

  <g:each in="${posts}" var="post">
    <div>
      <h2>${post.title}</h2>
      <p>${post.teaser}</p>
      <p>Last Updated: ${post.lastUpdated}</p>
      <g:link controller="post" action="edit" id="${post.id}">
            Edit this post
      </g:link>
      <g:link controller="post" action="view" id="${post.id}">
         View this post
      </g:link>
  </div>
  </g:each>
 </div>
 </body>
 </html>

ここに私のプラグインリストがあります

plugins {
    runtime ":hibernate:$grailsVersion"
    runtime ":jquery:1.8.3"
    runtime ":resources:1.2"
    runtime ':twitter-bootstrap:2.3.2'

    // Uncomment these (or add new ones) to enable additional resources capabilities
    //runtime ":zipped-resources:1.0"
    //runtime ":cached-resources:1.0"
    //runtime ":yui-minify-resources:0.1.5"

    build ":tomcat:$grailsVersion"

    runtime ":database-migration:1.3.2"

    compile ':cache:1.0.1'
}

動いていない。私はGrailsでまったく新しいです。なぜ機能しないのかわかりません。助けてください..

4

1 に答える 1