go 检测是否包含某一字段
resp, err := client.Do(req)
if err != nil {
results <- fmt.Sprintf("Request error: %v", err)
return
}
defer resp.Body.Close()
bodyText, err := io.ReadAll(resp.Body)
if err != nil {
results <- fmt.Sprintf("Read response error: %v", err)
return
}
fmt.Println(string(bodyText))
// Check if the response contains the word "你太帅了"
if strings.Contains(string(bodyText), "你太帅了") {
fmt.Println("检测到 你太帅了 ,程序退出!")
os.Exit(0)
}
本文来自博客园,作者:__username,转载请注明原文链接:https://www.cnblogs.com/code3/p/18595194