|
@@ -92,6 +92,11 @@ func QuestionAsk(c *gin.Context) {
|
|
|
response.Fail("内容不可为空", c)
|
|
|
return
|
|
|
}
|
|
|
+ contentRune := []rune(req.QuestionContent)
|
|
|
+ if len(contentRune) > 50 {
|
|
|
+ response.Fail("内容不可超过50个字符", c)
|
|
|
+ return
|
|
|
+ }
|
|
|
userinfo := user.GetInfoByClaims(c)
|
|
|
if err := community.CreateQuestion(int(userinfo.UserID), userinfo.Mobile, userinfo.RealName, req.QuestionContent); err != nil {
|
|
|
response.FailMsg("提交失败", "QuestionAsk ErrMsg:"+err.Error(), c)
|