gpt4 book ai didi

json - Golang 将 JSON 对象传递给函数

转载 作者:IT王子 更新时间:2023-10-29 02:05:21 25 4
gpt4 key购买 nike

这被认为是Selenium Web driver但我认为这不是很重要。

我可以设置浏览器名称

caps := selenium.Capabilities{"browserName": "firefox"}
wd, _ := selenium.NewRemote(caps, "")

但是对于“代理”即:

caps := selenium.Capabilities{"proxy": "http://1.2.3.4:999"}
wd, _ := selenium.NewRemote(caps, "")

我必须通过 JSON Proxy Object我完全不知道如何创建...我到处搜索,但仍然无法弄清楚...它是一种结构吗?或 map ..或什么... :-(

最佳答案

正如我在评论中所说,您可以使用表单

selenium.Capabilities{
"proxy": map[string]interface{}{
"httpProxy": "http://1.2.3.4:999",
// etc.
}
}

非结构化 JSON 通常通过 map[string]interface{} 进行(未)编码,类型为 selenium.Capabilities实际上只是一个map[string]interface{}

另请参阅:JSON and Go .

关于json - Golang 将 JSON 对象传递给函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30099970/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com