0

我有一个发送参数的 APIcurrentList: ["hey", "cool"]

type sentenceCreateReq struct {
    CurrentList []string `json:"currentList"`
}

func (usr *SentenceResource) Create(c buffalo.Context) error {
    req := sentenceCreateReq{}
    parseReqBody(c.Request(), &req)

    ...

    sentence := models.Sentence{}
    err := tx.Limit(1).Where("word NOT IN (?)", c.Params("currentList")).First(&sentence)

    ...
}

我如何能够加入字符串数组以满足我的要求?

我要运行的 SQL 语句是

SELECT * FROM sentences WHERE word NOT IN ('hey', 'cool');

4

1 回答 1

1

通常,您需要的占位符数量等于您传入的切片长度

像这样,例如: https: //play.golang.org/p/AZRTUsfKyH7

然后像

tx.Where(query, sentence...) 

它将作为单独的参数传入切片以填充占位符。

于 2018-04-06T15:31:39.137 回答