Merging other languages

This commit is contained in:
James Miranda
2016-09-23 18:01:10 -03:00
parent 380a8ee74c
commit de3c5bdaa4
490 changed files with 24539 additions and 24588 deletions

View File

@@ -1,9 +1,11 @@
# 4.6 小结
这一章里面我们学习了Go如何处理表单信息我们通过用户登陆、上传文件的例子展示了Go处理form表单信息及上传文件的手段。但是在处理表单过程中我们需要验证用户输入的信息考虑到网站安全的重要性数据过滤就显得相当重要了因此后面的章节中专门写了一个小节来讲解了不同方面的数据过滤顺带讲一下Go对字符串的正则处理。
通过这一章能够让你了解客户端和服务器端是如何进行数据上的交互,客户端将数据传递给服务器系统,服务器接受数据又把处理结果反馈给客户端。
## links
* [目录](<preface.md>)
* 上一节: [处理文件上传](<04.5.md>)
* 下一章: [访问数据库](<05.0.md>)
# 4.6 Summary
In this chapter, we mainly learned how to process form data in Go through several examples like logging in users and uploading files. We also emphasized that verifying user data is extremely important for website security, and we used one section to talk about how to filter data with regular expressions.
I hope that you now know more about the communication process between client and server.
## Links
- [Directory](preface.md)
- Previous section: [File upload](04.5.md)
- Next chapter: [Database](05.0.md)