当用户点击像http://localhost:8080/api/v1/customer?keyword=dhiman
这样的网址时,我从数据库中检索数据,然后如果有任何字段匹配则搜索集合中的数据,然后它将检索该数据。如果用户输入了像http://localhost:8080/api/v1/customer?keyword=dhi
这样的短网址,那么它还会检索匹配的数据,就像我将如何解决此问题一样。我尝试了以下代码: -
客户结构
type Customer struct {
Id int `json:"id" bson:"_id"`
FirstName string `json:"first_name" bson:"first_name"`
LastName string `json:"last_name" bson:"last_name"`
Email string `json:"email" bson:"email"`
PhoneNumber string `json:"phone_number" bson:"phone_number"`
}
type Customers []Customer
功能
func GetCustomers(c *gin.Context) {
value := c.Query("keyword")
fmt.Println(value)
response := ResponseControllerList{}
conditions := bson.M{"last_name":value}
data, err := models.GetCustomerListing(conditions)
if err != nil {
response = ResponseControllerList{
config.FailureCode,
config.FailureFlag,
config.FailureMsg,
nil,
nil,
}
} else {
response = ResponseControllerList{
config.SuccessFlag,
config.SuccessFlag,
config.SuccessMsg,
data,
// dataCount,
nil,
}
}
GetResponseList(c, response)
}
模型页面中的GetCustomerListing函数: -
func GetCustomerListing(customerQuery interface{}) (result Customers, err error) {
mongoSession := config.ConnectDb()
sessionCopy := mongoSession.Copy()
defer sessionCopy.Close()
getCollection := mongoSession.DB(config.Database).C(config.CustomerCollection)
err = getCollection.Find(customerQuery).Select(bson.M{"password": 0}).All(&result) //.Skip(skip).Limit(limit)
if err != nil {
return result, err
}
return result, nil
}
收集图片
答案 0 :(得分:0)
我通过使用mongodb中的$or
得到了答案。
在monogdb中有一个名为或$or
的运算符,它检查所有字段的值并生成结果。
使用了bson.RegExis
。因为它将匹配或检查与用户收到的数据类似的数据。
状况有变化。条件是: -
conditions := bson.M{"$or": []bson.M{
bson.M{"first_name": bson.RegEx{value,""}},
bson.M{"last_name": bson.RegEx{value,""}},
bson.M{"email": bson.RegEx{value,""}},
bson.M{"phone_number": bson.RegEx{value,""}},
}}
查询中有变化