之前自己学的 python ,但是公司要我学习 go,给了我一大段 python 的代码,要我翻译成 go,但是自己现在初学,大家有什么好的资料吗?
还有一个问题:
python 中:
umeng_devicetoken=MySQLdb.escape_string(web.utf8(data.get('umeng_devicetoken','')))
但是在 go 中该怎么写呢?
1
yougg 2015-12-29 16:39:56 +08:00
|
2
sun2920989 2015-12-29 16:41:43 +08:00
the way to go 我觉得不错
|
3
dofy 2015-12-29 17:17:38 +08:00
|
4
elgoog1970 2015-12-29 17:47:57 +08:00
为什么要转 golang?
|
5
janxin 2015-12-29 17:58:54 +08:00
Golang 里面不需要专门 escape_string ,用参数绑定就好。
|
6
cloudzhou 2015-12-29 18:00:40 +08:00
@sun2920989 the way to go 很不错。
umeng_devicetoken=MySQLdb.escape_string(web.utf8(data.get('umeng_devicetoken',''))) 这段话看起来是使用了 sql escape_string ? data.get('umeng_devicetoken','') 是 http 的 GET 获取参数? 然后使用 utf8 变成字符? 建议你还是一步步学起来吧 |
7
Bown 2015-12-29 18:34:46 +08:00 1
|
8
pathletboy 2015-12-29 18:51:43 +08:00 1
https://golang.org/pkg/
注意看里面的例子,学习即可。 |
9
latyas 2015-12-29 20:08:03 +08:00 via Android
同问
|
10
bianweiall 2015-12-29 20:42:12 +08:00
umeng_devicetoken=MySQLdb.escape_string(web.utf8(data.get('umeng_devicetoken','')))
这里面有: https://github.com/ziutek/mymysql/blob/master/mysql/utils.go |