在 ng-repeat AngularJS 中更改点击元素的工具提示

Change tooltip of clicked element in ng-repeat AngularJS

点击元素后,我正在执行功能,成功后我想改变点击元素的工具提示。

我有不止一个元素在 ngRepeat 循环中显示了这个工具提示。但是我只想在 currentTarget 元素(被单击的元素)上更改工具提示。目前我将工具提示显示为来自控制器的内插字符串,并且在函数成功后我正在更改此字符串。 这导致每个带有此工具提示的元素都有新的工具提示,而不仅仅是被单击的那个。

<div ng-repeat="n in auctions">
    <img src="img/heart_icon.png"
         alt="Dodaj do wishlisty"
         class="category__record-button--wishlist-icon"
         data-ng-if="$parent.authentication.isAuth"
         data-ng-click="addFollowAuction(n.id)"
         uib-tooltip="{{ categoryConfig.followInfo }}"
         tooltip-placement="top"
         tooltip-trigger="'mouseenter'"
         tooltip-append-to-body="true">
</div>

所以categoryConfig.followInfo就是我上面写的这个字符串,它在addFollowAuction()函数成功后发生了变化:

$scope.addFollowAuction = function (auctionId) {
    console.log(auctionId);
    auctionsFollowService.addFollowAuction(auctionId)
        .then(function (response) {
            if(response.detail === 'success follow') {
                $scope.categoryConfig.followInfo = 'Pomyślnie dodano ten przedmiot do wishlisty!';
            }
        }, function (err) {
            console.log('err adding to wishlist ' + err);
        });
};

然后循环显示的所有图像都有新的工具提示信息,但我只想将新信息附加到单击的图像。我尝试使用 $event 但它没有用,因为我正在以任何方式更改 $scope.categoryConfig.followInfo

如何仅将新的工具提示信息附加到单击的元素?

您需要 followInfo 是一个项目数组,并且每个项目都有自己的工具提示参考:

<div ng-repeat="n in auctions">
<img src="img/heart_icon.png"
     alt="Dodaj do wishlisty"
     class="category__record-button--wishlist-icon"
     data-ng-if="$parent.authentication.isAuth"
     data-ng-click="addFollowAuction(n.id)"
     uib-tooltip="{{ categoryConfig.followInfo[n.id] }}"
     tooltip-placement="top"
     tooltip-trigger="'mouseenter'"
     tooltip-append-to-body="true">

注意 uib-tooltip="{{ categoryConfig.followInfo[n.id] }}"

$scope.addFollowAuction = function (auctionId) {
console.log(auctionId);
auctionsFollowService.addFollowAuction(auctionId)
    .then(function (response) {
        if(response.detail === 'success follow') {
            $scope.categoryConfig.followInfo[auctionId] = 'Pomyślnie dodano ten przedmiot do wishlisty!';
        }
    }, function (err) {
        console.log('err adding to wishlist ' + err);
    });
};

通知$scope.categoryConfig.followInfo[auctionId] 不要忘记在之前初始化followiInfo:$scope.categoryConfig.followInfo =[]