修复文章查找公开选项倒反了
parent
592d2fd90e
commit
9f80b48fd7
|
@ -63,7 +63,8 @@ func GetArticles(c *gin.Context) {
|
||||||
}else{
|
}else{
|
||||||
is_public = 1
|
is_public = 1
|
||||||
}
|
}
|
||||||
sql = fmt.Sprintf("select * from doc where doc.title like '%%%s%%' and doc.type = %d and is_public = %d limit %d offset %d ",is_public,req.Name,req.Type,limit,offset*limit)
|
sql = fmt.Sprintf("select * from doc where doc.title like '%%%s%%' and doc.type = %d and is_public = %d limit %d offset %d ",
|
||||||
|
is_public,req.Name,req.Type,limit,offset*limit)
|
||||||
}
|
}
|
||||||
}else{
|
}else{
|
||||||
if req.Type == 110{
|
if req.Type == 110{
|
||||||
|
@ -78,9 +79,9 @@ func GetArticles(c *gin.Context) {
|
||||||
}else{
|
}else{
|
||||||
is_public := 0
|
is_public := 0
|
||||||
if public == "true"{
|
if public == "true"{
|
||||||
is_public = 0
|
|
||||||
}else{
|
|
||||||
is_public = 1
|
is_public = 1
|
||||||
|
}else{
|
||||||
|
is_public = 0
|
||||||
}
|
}
|
||||||
sql = fmt.Sprintf("SELECT doc.id,doc.author,LEFT(doc.content,50) as content,doc.title,doc.type from doc where doc.type = %d and is_public = %d " +
|
sql = fmt.Sprintf("SELECT doc.id,doc.author,LEFT(doc.content,50) as content,doc.title,doc.type from doc where doc.type = %d and is_public = %d " +
|
||||||
"limit %d offset %d",req.Type,is_public,limit,offset)
|
"limit %d offset %d",req.Type,is_public,limit,offset)
|
||||||
|
|
4
main.go
4
main.go
|
@ -52,6 +52,7 @@ func InitConfig() {
|
||||||
log.Println(e.Error())
|
log.Println(e.Error())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func InitMysql() {
|
func InitMysql() {
|
||||||
c := config.GetMysqlConfig()
|
c := config.GetMysqlConfig()
|
||||||
if c == nil {
|
if c == nil {
|
||||||
|
@ -60,6 +61,7 @@ func InitMysql() {
|
||||||
db.Init()
|
db.Init()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func InitRedisConfig() {
|
func InitRedisConfig() {
|
||||||
e := config.InitRedis()
|
e := config.InitRedis()
|
||||||
if nil != e {
|
if nil != e {
|
||||||
|
@ -67,12 +69,14 @@ func InitRedisConfig() {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func InitElasticSearch(){
|
func InitElasticSearch(){
|
||||||
e := db.GetElastic().CreateIndex("hardware",model.HardwareTypeMapping())
|
e := db.GetElastic().CreateIndex("hardware",model.HardwareTypeMapping())
|
||||||
if nil != e{
|
if nil != e{
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func InitLogs() {
|
func InitLogs() {
|
||||||
logs.Init(config.GetLogConfig().Dir, config.GetLogConfig().File, config.GetLogConfig().Level, config.GetLogConfig().SaveFile)
|
logs.Init(config.GetLogConfig().Dir, config.GetLogConfig().File, config.GetLogConfig().Level, config.GetLogConfig().SaveFile)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue