0

我使用 grails 2.1.1 并开发一个 twitter 克隆应用程序。当用户发布帖子时,我的应用程序会显示这些帖子的列表,其中包含用户的照片、他/她的全名和用户名、创建帖子以及创建帖子的时间。当我单击创建帖子的用户的用户名(实际上是 ag:link)时,我需要重定向到该特定用户的个人资料,而不是活动用户的个人资料。下面是我的postentries.gsp代码,它显示了当前活跃用户正在关注的那些用户的所有帖子......

<div class="container well span8">

    <div class="postImage">
<div class="span1">
        <g:if test="${post.user.profile.photo}">
            <img src="${createLink(controller: 'image', action: 'renderImage', id: post.user.username)}" class="img-rounded"/>
        </g:if>
    </div>
    </div>
    <div class="postEntry">
        <div class="postText">
                <div class="span8">

            **<g:link controller="post" action="profile"><b>${post.user.profile.fullName}</b>@(${post.user.username})</g:link>**
            ${post.content}

        </div>
        <div class="postDate">
            <h:dateFromNow date="${post.createdOn}"/>
        </div>
            </div>
    </div>
</div>

下面是profile.gsp代码

<html>
<head>
    <meta name="layout" content="bootstrap"/>
  <title>${user.profile.fullName}'s Profile Page</title>
</head>
<body>
   <div class="container well span4" id="sidebar">

   </div>

<div class="container well span8">
    <div class="span3"></div>
    <div class="container-fluid well text-center span6">
    <div class="row-fluid span1">
            <g:if test="${user.profile.photo}">
                <img src="${createLink(controller: 'image', action: 'renderImage', id: user.username)}" class="img-rounded"/>
            </g:if>
    </div>
        <div class="row-fluid">
        <h3>${user.profile.fullName}</h3>
        <h4>@${user.username}</h4>
        <h5>${user.profile.country}</h5>
    </div>
        <div class="span3"></div>
    </div>
</div>
</body>
</html>

问题是当我点击用户名的 g:link 时,我总是重定向到我不想要的活动用户的个人资料。

4

1 回答 1

0

id你需要在你的 postentries.gsp 中指定你想要的配置文件

**<g:link controller="post" action="profile" id="${post?.user?.profile.id}">
   <b>${post.user.profile.fullName}</b>@(${post.user.username})</g:link>**
于 2013-07-30T12:14:43.863 回答