英文:
Golang pass JSON object to a function
问题
这是关于Selenium Web driver的内容,但我认为它并不是非常重要。
我可以设置浏览器名称:
caps := selenium.Capabilities{"browserName": "firefox"}
wd, _ := selenium.NewRemote(caps, "")
但是对于"proxy",例如:
caps := selenium.Capabilities{"proxy": "http://1.2.3.4:999"}
wd, _ := selenium.NewRemote(caps, "")
我必须传递一个JSON代理对象,但我完全不知道如何创建它...我在这里和那里搜索,但仍然无法弄清楚...它是一种结构体吗?还是映射..或者其他什么...
英文:
This is regarded the Selenium Web driver but I think it is not quite important.
I can set the browser name
caps := selenium.Capabilities{"browserName": "firefox"}
wd, _ := selenium.NewRemote(caps, "")
But for "proxy" ie:
caps := selenium.Capabilities{"proxy": "http://1.2.3.4:999"}
wd, _ := selenium.NewRemote(caps, "")
I have to pass a JSON Proxy Object which I absolutely have no idea how to create... I searched there and there, but still could not figure... Is it kind of struct? Or map.. or what...
答案1
得分: 2
如我在评论中所说,你可以使用以下形式:
selenium.Capabilities{
"proxy": map[string]interface{}{
"httpProxy": "http://1.2.3.4:999",
// 其他属性
}
}
非结构化的 JSON 通常通过 map[string]interface{}
进行 (un)marshalling,而 selenium.Capabilities
类型实际上就是一个 map[string]interface{}
。
参考资料:JSON 和 Go。
英文:
As I've said in the comment, you can use the form
selenium.Capabilities{
"proxy": map[string]interface{}{
"httpProxy": "http://1.2.3.4:999",
// etc.
}
}
Unstructured JSON is usually (un)marshalled through map[string]interface{}
, and the type selenium.Capabilities
is in fact just a map[string]interface{}
.
See also: JSON and Go.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论