gpt4 book ai didi

ajax - 通过Grails中的AJAX调用刷新g:each标签

转载 作者:行者123 更新时间:2023-12-02 14:18:57 24 4
gpt4 key购买 nike

我有一个统计面板,显示最近注册的用户。我想实现一个AJAX调用来上传面板,而不必重新加载整个页面。

我的 View 中有以下代码:

<g:each in="${lastUsers}" var="user">
<div class="mt-comments">
<div class="mt-comment">
<div class="mt-comment-img">
<g:if test="${user?.avatar}">
<img src="${createLink(controller:'controllerUser',
action:'image', id: user?.id)}" />
</g:if>
<g:else>
<img class="img-circle"
src="${resource(dir: 'img/profile', file: 'user_profile.png')}"/>
</g:else>
</div>
<div class="mt-comment-body">
<div class="mt-comment-info">
<span class="mt-comment-author">${user?.username}</span>
<span class="mt-comment-date">
<g:formatDate date="${user?.dateCreated}"/>
</span>
</div>
<div class="mt-comment-text">${user?.email}</div>
<div class="mt-comment-details">
<g:if test="${user?.enabled}">
<span class="mt-comment-status label label-sm label-success circle">
</g:if>
<g:else>
<span class="mt-comment-status label label-sm label-info circle">
</g:else>
<g:formatBoolean boolean="${user?.enabled}"/>
</span>
<ul class="mt-comment-actions">
<li>
<g:link controller="user" action="edit" id="${user?.id}">Edit</g:link>
</li>
</ul>
</div>
</div>
</div>
</div>
</g:each>

另外,单击时有一个按钮称为AJAX函数。 Ajax函数成功以JSON格式接收数据。从那里,我不知道上传我的g:each标签。

我尝试了Grails的remoteFunction来使用上载属性,但是出现错误: 没有配置javascriptt提供商,并且我已经搜索了解决方案,但是一切正常。

AJAX调用:
$('.button').click(function() {

$.ajax({
url: URL,
success: function(data) {

console.log(data[index]);
console.log(val.username);
console.log(val.dateCreated);
console.log(val.email);
console.log(val.enabled);
console.log(val.avatar);
console.log(val.id);
},
error: function(){
},
});

谢谢你帮我

最佳答案

您可以使用grails模板和jQuery load方法来代替JSON数据。这是一个快速的POC。

模板(_userComments.gsp)

这将作为可重用的 View ,可以通过AJAX调用或直接将其包含在其他 View 中。

<g:each in="${lastUsers}" var="user">
<div class="mt-comments">
.....
</div>
</g:each>

查看(main.gsp)

我们的主要观点。
<div class="userComments">
<!-- When the Page is Loaded, We need render this without an Ajax Call -->
<g:render template="userComments" model="['lastUsers':lastUsers]"/>
</div>

Javascript
$('.button').click(function() {
$( ".userComments" ).load( "user/userComments" );
});

Controller

我们定义了两种方法,一种用于主 View ,一种用于ajax调用。
def index() {
def lastUsers = User.list();
render(view:'main', model: [lastUsers: lastUsers])
}

// Ajax Call
def userComments() {
def lastUsers = User.list(); // what ever your fetch logic is
render(template:'userComments', model: [lastUsers: lastUsers])
}

关于ajax - 通过Grails中的AJAX调用刷新g:each标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36536206/

24 4 0