第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

數(shù)量增加 2,而不是 1。彈簧靴

數(shù)量增加 2,而不是 1。彈簧靴

倚天杖 2023-03-09 17:16:13
我已經(jīng)實(shí)現(xiàn)了一個(gè)功能,當(dāng)你購(gòu)買相同的產(chǎn)品時(shí),購(gòu)物車數(shù)量增加 1,但當(dāng)我點(diǎn)擊按鈕時(shí)它增加 2 而不是 1@RequestMapping(value = "/add/{movieId}", method = RequestMethod.PUT)@ResponseStatus(value = HttpStatus.NO_CONTENT)public int addItem(@PathVariable(value = "movieId") int movieId,@AuthenticationPrincipal User activeUser){    Customer customer = customerService.getCustomerByUsername(activeUser.getUsername());    Cart cart = customer.getCart();    Movie movie = movieService.getMovieById(movieId);    List<CartItem> cartItems = cart.getCartItems();    for (CartItem item : cartItems) {        if(movie.getMovieId()==item.getMovie().getMovieId()){            CartItem cartItem = item;                      cartItem.setQuantity(cartItem.getQuantity()+1);            cartItem.setTotalPrice(movie.getMoviePrice()*cartItem.getQuantity());            cartItemService.addCartItem(cartItem);            return 0;        }    }    CartItem cartItem = new CartItem();    cartItem.setMovie(movie);    cartItem.setQuantity(1);    cartItem.setTotalPrice(movie.getMoviePrice()*cartItem.getQuantity());    cartItem.setCart(cart);    cartItemService.addCartItem(cartItem);    return 0;}角度部分$scope.addToCart = function (movieId){    $http.put("/rest/cart/add/"+movieId).success(function(){         alert("Movie successfully add to the cart");     });};按鈕<button class="btn btn-rose btn-round" ng-controller="cartCtrl" ng-click="addToCart('${movie.movieId}')">Add to Cart &nbsp;<i class="material-icons">shopping_cart</i></button>
查看完整描述

1 回答

?
喵喵時(shí)光機(jī)

TA貢獻(xiàn)1846條經(jīng)驗(yàn) 獲得超7個(gè)贊

因?yàn)?code>for你試圖找到具有相同 ID 的電影而不是增加它的數(shù)量,所以你為什么要運(yùn)行cartItemService.addCartItem(cartItem)?您應(yīng)該將其更改為更新實(shí)體,例如cartItemService.updateCartItem(cartItem).



查看完整回答
反對(duì) 回復(fù) 2023-03-09
  • 1 回答
  • 0 關(guān)注
  • 139 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)