我正在尝试使用ajax从数据库中获取每个帖子的所有comments
,但是我遇到了一些问题。
这是问题。
我已经home
路由了从数据库中提取所有posts
的地方,而我没有在那些帖子中提取comments
。
现在,我想使用Ajax为每个帖子获取comments
,例如,当有人对帖子发表评论时,应将其添加到数据库中,然后即时从数据库中获取。
评论已成功通过 Ajax 添加,但是我无法使用Ajax从数据库中获取它们。
这是我的代码:
控制器
Route::get('/home', 'HomeController@index')->name('home');
HomeController
中的索引方法
public function index()
{
$post = Post::all();
// I've used this approach to get comments
//$posts = Post::with('comments')->get();
return view('home')->with( array('posts'=>$posts ) );
}
我已经遍历了数据库中的所有帖子,因此在该循环中也有一个表单,可以对该帖子发表评论。
** Form
要发表评论**
@foreach($posts as $post)
<p>$post->description</p>
<div class="show_comments_{{ $post->id }}"></div>
<form action="{{ url('comment',$post->p_id) }}" method="POST" >
@csrf
<textarea
name="body"
placeholder="Write A Suggestion"
data-autosize-input='{ "space": 100 }'
rows="50" cols="100"
name="comment"
class="form-control comment body">
</textarea>
<input type="hidden" value="{{csrf_token()}}">
<!-- user Id of the logged In one -->
<input type="text" class="user_id" value="{{Auth::user()->id}}" name="user_id">
<!-- post id -->
<input type="text" class="post_id" name="post_id" value="{{$post->p_id}}">
<button type="button" class="btn btn-sm btn-danger formcomment" value = 'Comment' style="margin:10px;">Comment</button>
</form>
@endforeach
当我点击评论按钮时,将运行以下代码以将评论插入comments
table。
Ajax请求
$(document).ready(function(){
$('.formcomment').on('click', function(e) {
e.preventDefault();
var form = $(this).closest('form');
// these are id's
var body = form.find('.body').val();
var post_id = parseInt(form.find('.post_id').val());
var user_id = parseInt(form.find('.user_id').val());
// alert(body);
// alert('this is post'+post_id);
// alert('This is user id'+user_id);
$.ajax({
type: "POST",
url: '/comment/'+post_id,
data: {body:body, post_id:post_id, user_id:user_id, _token: '{{csrf_token()}}'},
success: function(data) {
$(".show_comments_"+post_id).append("<div style = 'color:red;'>"+data.msg+"</div>");
$(".name_"+user_id).append("<div>"+data.user_id+"</div>")
}
});
});
});
评论已成功添加到图像中提到的表中,并且我已按照上述形式将其取回,但是当我刷新页面时会被获取,当有人在页面上留下评论时,我想获取它们。飞,因为它是通过ajax插入的,但是在刷新页面后才获取。
已更新
/comment
代码在这里
public function storeComments(Request $request,Comment $body,$post_id){
if($request->ajax()){
$comment = new Comment;
$comment->user_id = Auth::user()->id;
$comment->post_id = $post_id;
$comment->body = Input::get('body');
$comment->save();
$response = array(
'status' => 'success',
'msg' => 'Setting created successfully',
);
return Response::json($response);
return 'yes';
}else{
return 'no';
}
}
评论表,带有“虚拟”数据looks like this 我正在尝试从最近两天开始解决此问题,请提供帮助。 谢谢
我为此研究的链接是this
答案 0 :(得分:0)
表格代码更新。
@foreach($posts as $post)
<p>$post->description</p>
<div class="show_comments_{{ $post->p_id}}"></div>
// I found this code on laracast, at end there is link.
@if (count($post->comments))
@foreach($post->commnents as $comment)
<small>$comment->body</small>
@endforeach
@else
No comments Found
@endif
将数据存储在json响应中。
if($request->ajax()){
$comment = new Comment;
$comment->user_id = Auth::user()->id;
$comment->post_id = $post_id;
$comment->body = Input::get('body');
$comment->save();
//add the comment in response
return response()->json(['msg'=>$comment->body]);
}
在ajax中需要显示我们已成功添加数据的消息
$.ajax({
type: "POST",
url: '/comment/'+post_id,
data: {body:body, post_id:post_id, user_id:user_id, _token: '{{csrf_token()}}'},
success: function(data) {
//get the msg from success response.
$(".show_comments_"+post_id).append("<div style = 'color:red;'>"+data.msg+"</div>");
}
});