英文: Change WebKitWebSettings in Go cgo 问题 我正在使用go-webkit,并且我有一个webkitsettings的实例,我该如何更改设置? 我正在尝试像这样做...
删除目录及其所有子目录
英文: Remove directory and all subdirectories 问题 这是我尝试的代码: package main import ( "fmt" "os...
Golang – command "go" not found when running via Upstart
英文: Golang - command "go" not found when running via Upstart 问题 我正在尝试在我的Ubuntu上通过"ups...
Go语言的http标准库中是否存在内存泄漏问题?
英文: Memory leak in Go http standard library? 问题 请稍等,我会为你翻译这段代码和问题。 英文: Have a Go binary implement an...
Golang pq: 执行 SQL 时出现语法错误
英文: Golang pq: syntax error when executing sql 问题 使用revel,golang 1.1.2,gorp,postgres 9.3.2在heroku上。 ...
Go中的多维切片
英文: Multidimensional Slices in Go 问题 我想在Go语言中使用一个具有可变数量元素的数组/切片(在编译时不知道),并且能够动态添加不同类型的新元素,例如: data[0...
Can you declare multiple variables at once in Go?
英文: Can you declare multiple variables at once in Go? 问题 在Golang中,可以同时声明多个变量吗? 例如,在Python中,你可以这样写: a...
你可以在接口上调用len()函数吗?
英文: How can I call len() on an interface? 问题 我正在编写一个测试,测试一个 JSON 列表是否为空。 {"matches": []} 该...
缓冲/非缓冲通道
英文: Buffered/Unbuffered channel 问题 有人可以解释一下,为什么如果通道是带缓冲的,程序不会因为致命错误而退出吗? 无缓冲通道 package main func mai...
使用Telnet发送HTTP GET命令。
英文: Send http GET command from Telnet 问题 我有一个简单的程序: package main import ( "fmt" "net/htt...
364