【发布时间】:2015-03-01 10:28:32
【问题描述】:
我在我的项目中使用 Laravel 4。我有一个帖子的“新闻源”。每个帖子都可以评论。当用户在帖子上重新加载页面时,新的评论会显示在评论框中。我怎么不希望整个页面重新加载。因此,我可以使用 ajax 提交帖子。我提交表单并阻止页面刷新。但是,现在我不知道如何在不手动刷新页面的情况下让评论出现在帖子上?
这是我发布 cmets 的路线:
Route::post('post/{id}/comment', ['as' => 'commentPost', 'uses' => 'CommentsController@postComment']);
将此评论发布到数据库的控制器:
public function postComment()
{
extract(Input::only('user_id', 'resource_id', 'body'));
$this->execute(new PostCommentCommand($user_id, $resource_id, $body));
return Redirect::back();
}
我使用命令总线最终将评论保存到数据库,如下所示:
public function leaveComment($user_id, $resource_id, $body)
{
$comment = Comment::leavePostComment($resource_id, $body);
User::findOrFail($user_id)->comments()->save($comment);
return $comment;
}
评论模型:
public static function leavePostComment($resource_id, $body)
{
return new static([
'resource_id' => $resource_id,
'body' => $body
]);
}
这是加载评论框的视图(包含属于该帖子的所有 cmets 和一个用于发布新 cmets 的类型框。当用户点击“输入/返回”时,我使用 JS 发布评论" 键):
<div class="comment-box-container">
<div class="comment-box">
@if ($type->comments)
@foreach ($type->comments as $comment)
<div class="user-comment-box">
<div class="user-comment">
<p class="comment">
<!-- starts off with users name in blue followed by their comment-->
<span class="tag-user"><a href="{{ route('profile', $comment->owner->id) }}">{{ $comment->owner->first_name }} {{ $comment->owner->last_name }}</a> </span>{{ $comment->body }}
</p>
<!-- Show when the user posted comments-->
<div class="com-details">
<div class="com-time-container">
{{ $comment->created_at->diffForHumans() }} ·
</div>
</div>
</div><!--user-comment end-->
</div><!--user-comment-box end-->
@endforeach
@endif
<!--type box-->
<div class="type-comment">
<div class="type-box">
{{ Form::open(['data-remote', 'route' => ['commentPost', $id], 'class' => 'comments_create-form']) }}
{{ Form::hidden('user_id', $currentUser->id) }}
{{ Form::hidden($idType, $id) }}
{{--{{ Form::hidden('user_id', $currentUser->id) }}--}}
{{ Form::textarea('body', null, ['class' =>'type-box d-light-solid-bg', 'placeholder' => 'Write a comment...', 'rows' => '1']) }}
{{ Form::close() }}
</div><!--type-box end-->
</div><!--type-comment-->
</div><!--comment-box end-->
这是我用于 ajax 的 Javascript:
(function(){
$('form[data-remote]').on('submit', function(e){
var form = $(this);
var method = form.find('input[name="_method"]').val() || 'POST';
var url = form.prop('action');
$.ajax({
type: method,
url: url,
data: form.serialize(),
success: function() {
** I DON'T KNOW WHAT TO PUT HERE TO MAKE THE
COMMENT-BOX RELOAD AND DISPLAY THE NEWLY
POSTED COMMENT **
}
});
e.preventDefault();
});
})();
请注意,我对 JavaScript 非常陌生,甚至对 Ajax 也很陌生。任何帮助将不胜感激!
【问题讨论】:
-
在 ajax 调用的成功事件中,将一个变量添加到参数部分...类似于 success: function(data) .... 然后您在该变量中有服务器响应,从那里你可以只用 jQuery 来更新一个元素或者你希望如何将更改应用到你的页面。
标签: javascript php jquery ajax laravel