我只想检查产品是否已添加到愿望清单中(仅适用于已登录的客户)

并将结果放在树枝文件中,如果产品已在愿望清单中

button color=red
else
button color=gray


甚至得到以上结果,当用户单击添加到愿望清单按钮时,将给出实时结果,我的意思是按钮颜色gray将使用javascript更改为red

我正在使用最新版本的3.0.3.2 opencart版本

一个更好的解决方案必须受到赞赏...

最佳答案

尝试使用此代码。
我对此进行了如下修改。这对我来说是正常的

添加您要对其执行操作的标签

<li><a href="javascript:void(0);" class="btn_wishlist_alt" data-product-id=69><i class="fa fa-heart"></i> <span class="">{{ text_wishlist }}</span></a></li>


现在将一些js代码添加到您的文件中

<script type="text/javascript">
      $(document).ready(function(){
        $('.btn_wishlist_alt').on('click', function(){
          //alert();
          var self = this;
          var pID = $(self).attr('data-product-id');
          $.ajax({
            url: 'index.php?route=product/product/wishlistcheck&product_id=' +  encodeURIComponent(pID),
            dataType: 'json',
            type: 'post',
            cache: false,
            contentType: false,
            processData: false,
            success: function(json) {
              if(json['in_wishlist']){
                //set color red
              }else{
                //set color blue
              }
            }
          });
        });
      })
    </script>


现在将此功能添加到您的控制器文件中

public function wishlistcheck(){

        $json = array();

        if ($this->request->server['REQUEST_METHOD'] == 'POST') {
            $product_id = $this->request->get['product_id'];
            if ($this->customer->getId()) {
                $this->load->model('account/wishlist');
                $wishlist = $this->model_account_wishlist->getWishlist();
                if(in_array($product_id, array_column($wishlist, 'product_id'))) {
                    $json['in_wishlist'] = true;
                }else{
                    $json['in_wishlist'] = false;
                }
            }
        }
        $this->response->addHeader('Content-Type: application/json');
        $this->response->setOutput(json_encode($json));
    }


这里是。就这样。

07-22 16:52