李昊 4 years ago
parent
commit
29fb293a58

+ 1 - 1
gx_api/GxPress/Api/GxPress.Api/AppControllers/CommentController.cs

@@ -34,7 +34,7 @@ namespace GxPress.Api.AppControllers
         {
             // request.Content = StringUtils.RemoveEmoji(request.Content);
             request.UserId = _loginContext.AccountId;
-            if (string.IsNullOrWhiteSpace(request.Content) || string.IsNullOrWhiteSpace(request.JsonContent) || string.IsNullOrWhiteSpace(request.HtmlContent))
+            if (string.IsNullOrWhiteSpace(request.Content)  && string.IsNullOrWhiteSpace(request.JsonContent)  && string.IsNullOrWhiteSpace(request.HtmlContent))
                 throw new BusinessException("评论内容为空");
             return await _commentRepository.CommentInAsync(request) > 0;
         }

+ 1 - 1
gx_api/GxPress/Api/GxPress.Api/WebControllers/WebCommentController.cs

@@ -36,7 +36,7 @@ namespace GxPress.Api.WebControllers
         {
             // request.Content = StringUtils.RemoveEmoji(request.Content);
             request.UserId = _loginContext.AccountId;
-            if (string.IsNullOrWhiteSpace(request.Content) || string.IsNullOrWhiteSpace(request.JsonContent) || string.IsNullOrWhiteSpace(request.HtmlContent))
+            if (string.IsNullOrWhiteSpace(request.Content) && string.IsNullOrWhiteSpace(request.JsonContent) && string.IsNullOrWhiteSpace(request.HtmlContent))
                 throw new BusinessException("评论内容为空");
             return await _commentRepository.CommentInAsync(request) > 0;
         }

+ 1 - 1
gx_api/GxPress/Repository/GxPress.Repository.Implement/CommentRepository.cs

@@ -321,7 +321,7 @@ namespace GxPress.Repository.Implement
         public async Task<bool> UpdateCommentAsync(CommentUpdateRequest request)
         {
             //判断类容是否为空
-            if (string.IsNullOrWhiteSpace(request.Content) || string.IsNullOrWhiteSpace(request.JsonContent) || string.IsNullOrWhiteSpace(request.HtmlContent))
+            if (string.IsNullOrWhiteSpace(request.Content) && string.IsNullOrWhiteSpace(request.JsonContent)  && string.IsNullOrWhiteSpace(request.HtmlContent))
                 throw new Common.Exceptions.BusinessException("评论不能为空!");
             //查询评论
             var comment = await _repository.GetAsync(request.CommentId);