🐛 文章标签问题修复
This commit is contained in:
parent
cf1a1f7d8f
commit
3189b59192
@ -61,10 +61,13 @@ public class TagServiceImpl extends AbstractService<Tag> implements TagService {
|
|||||||
addTagArticle = true;
|
addTagArticle = true;
|
||||||
addUserTag = true;
|
addUserTag = true;
|
||||||
} else {
|
} else {
|
||||||
for(int m=0,n=articleTagDTOList.size()-1;m<n; m++) {
|
int n = articleTagDTOList.size();
|
||||||
|
for (int m = 0; m < n; m++) {
|
||||||
ArticleTagDTO articleTag = articleTagDTOList.get(m);
|
ArticleTagDTO articleTag = articleTagDTOList.get(m);
|
||||||
if (articleTag.getIdTag().equals(tag.getIdTag())) {
|
if (articleTag.getIdTag().equals(tag.getIdTag())) {
|
||||||
articleTagDTOList.remove(articleTag);
|
articleTagDTOList.remove(articleTag);
|
||||||
|
m--;
|
||||||
|
n--;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Integer count = tagMapper.selectCountTagArticleById(tag.getIdTag(), article.getIdArticle());
|
Integer count = tagMapper.selectCountTagArticleById(tag.getIdTag(), article.getIdArticle());
|
||||||
|
Loading…
Reference in New Issue
Block a user