与使用jQuery的AJAX

时间:2016-04-09 17:32:11

标签: javascript jquery laravel

目标:我正在尝试创建一个按钮,允许用户喜欢网站上的帖子(类似于Facebook的方式),这也会增加/减少喜欢的数量除了按钮之外。

问题:除了一个边缘情况外,一切运作良好。如果用户已经喜欢这个帖子,他可以不像它,但不再喜欢它了。看起来像/不像切换不起作用,浏览器只向服务器发送'不同'请求。如果用户以前从未喜欢过该图像,则类似/不同的切换似乎可以正常工作。

我通过对这些属性进行操作来利用post的data属性来切换like / different请求。我目前正在通过Laravel框架使用PHP,并使用jQuery进行前端操作.Below是我的代码示例。

favorite.js文件

$(function(){

    $('.favorite-button').click(function(){
        var $this=$(this);
        var post_id=$this.data('postId');

        $.ajaxSetup({
                headers: {
                    'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
                }
        });



        if($this.data('favoriteId')){
            //decrement the favorite count
            count=$this.siblings('.favorite-count');
            count.html(parseInt(count.html())-1);

            //send ajax request
            var fav_id=$this.data('favoriteId');
            $this.removeData('favoriteId');
            $.ajax({
                url:'/post/'+post_id+'/favorite/'+fav_id,
                type:'DELETE',
                success: function(result){
                    console.log('post was unfavorited');
                },
                error: function(){
                    console.log('error: did not favorite the post.');
                }
            });
        }


        else{
            //update the favorite count
            count=$this.siblings('.favorite-count');
            count.html(parseInt(count.html())+1);

            //send ajax post request
            $.ajax({
                url:'/post/'+post_id+'/favorite',
                type:'POST',
                success: function(result){
                    //update the data attributes
                    $this.data('favoriteId',result['id']);
                    console.log(result);
                    console.log('post was favorited');

                },
                error: function(){
                    console.log('error: did not favorite the post.');
                }
            });
        }
    });
});

HTML文件

<div class="pull-right">
    <span class="marginer">
        @if(Auth::guest() || $post->favorites->where('user_id',Auth::user()->id)->isEmpty())
            <i  data-post-id="{{ $post->id }}" class="fa fa-heart fa-lg favorite-button"></i>
        @else
            <i  data-favorite-id="{{ Auth::user()->favorites()->where('post_id',$post->id)->first()->id }}" data-post-id="{{ $post->id }}" class="fa fa-heart fa-lg favorite-button"></i>
        @endif

        <span class="favorite-count">{{ $post->favorites->count() }}</span>
    </span>
</div>

除了解决我的问题,如果您认为我不符合此任务的最佳做法,请发表评论。我想听听你的意见。

3 个答案:

答案 0 :(得分:2)

尝试尽可能简化“喜欢/不喜欢/喜欢/计数”的操作,而不是尝试使用jQuery

  • 避免从刀片模板查询,只是将数据发送到视图

以下是我如何解决这个问题而不是让jQuery做繁重的工作

HTML /呈现

    <button  class='likebutton' data-identifier='1' data-state='liked'>Like</button>
<button class='favoritebutton' data-identifier='1' data-state='favorited'>Favorite</button>
<span class='count counts-1'>123</span>

刀片

<button  class='likebutton' data-identifier='{{!! Post->ID !!}' data-state='{{!! /*<something to see if user liked this>*/?'liked':'unliked' !!}'>{{!! <something to see if user liked>?'liked':'unliked' !!}</button>
<button class='favoritebutton' data-identifier='{{!! Post->ID !!}' data-state='{{!! /*<something to see if user liked>*/?'favorited':'notfavorited' !!}'>{{!! <something to see if user liked>?'favorited':'notfavorited' !!}</button>
<span class='count counts-{{!! $Post->ID !!}}'>{!! $Post->totallikes !!}</span>

JS

$.ajaxSetup({headers: {'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')}});

function UserLike(_event){
var state = $(_event.target).data('state');
var postID = parseInt($(_event.target).data('identifier'));
console.log('Status => '+$(_event.target).data('state'));
  $.post('/posts/metadata/likes',{
    'postID':postID
  },function(res){
    $(_event.target).data('state',res.state);
    $(_event.target).text(res.text);
    $('.counts-'+postID).text(res.totallikes);
  }).fail(function(){
    /* do something on fail */
  });
}
function UserFavorite(_event){
var postID = parseInt($(_event.target).data('identifier'));
  $.post('/user/metadata/favorites',{
    'postID':postID
  },function(res){
    $(_event.target).data('state',res.state);
    $(_event.target).text(res.text);
  }).fail(function(){
    /* do something on fail */
  });
}

$("body").on('click','.likebutton',function(_event){    UserLike(_event);   });
$("body").on('click','.favoritebutton',function(_event){    UserFavorite(_event);   });

PHP

// Routes

Route::post('/posts/metadata/likes',function(){
    // auth check
    // handle state/likes
    // ex. response
    // response with json {'state':notliked,'text':'<translated string>','postID':1}
});

Route::post('/user/metadata/favorites',function(){
    // auth check
    // handle state/favorites
    // response with json {'state':favorited,'text':'<translated string>,'postID':1}
});

答案 1 :(得分:1)

我建议将$this.data('favoriteId');替换为$this.attr("data-favourite-id")。它为我带来了不同。检查这个codepen http://codepen.io/jammer99/pen/PNEMgV

但是我不知道为什么你的解决方案不起作用

答案 2 :(得分:1)

JQuery data('favoriteId')未设置属性 data-favourite,它只是运行时设置,它变为元素的属性,不是attrubutes(那不一样)。

因此无法通过服务器端代码设置Jquery数据。

您可以在.Prop()的jquery文档中阅读更多内容: http://api.jquery.com/prop/

有关于差异的解释。 编辑:做出大胆的句子!