瀏覽代碼

过滤富文本字数限制

wzq 5 年之前
父節點
當前提交
2c4482ba2e
共有 1 個文件被更改,包括 8 次插入6 次删除
  1. 8 6
      app/Repositories/Post/PostRepository.php

+ 8 - 6
app/Repositories/Post/PostRepository.php

@@ -87,12 +87,14 @@ class PostRepository
         $topicIds = implode(',', $topicIdsArray);
 
         //验证内容字数
-        $html = strip_tags($request['content']);
-        if (mb_strlen($html, 'UTF8') > 1000) {
-            return Response::create([
-                'message' => '所传内容不能超过1000字',
-                'status_code' => 500
-            ]);
+        if($request['type'] != 'html'){
+            $html = strip_tags($request['content']);
+            if (mb_strlen($html, 'UTF8') > 1000) {
+                return Response::create([
+                    'message' => '所传内容不能超过1000字',
+                    'status_code' => 500
+                ]);
+            }
         }
 
         $data = [