本月博客排行
-
第1名
龙儿筝 -
第2名
johnsmith9th -
第3名
wy_19921005 - zysnba
- sgqt
- lemonhandsome
年度博客排行
-
第1名
宏天软件 -
第2名
青否云后端云 -
第3名
龙儿筝 - gashero
- wallimn
- vipbooks
- benladeng5225
- wy_19921005
- fantaxy025025
- qepwqnp
- e_e
- 解宜然
- zysnba
- ssydxa219
- sam123456gz
- javashop
- arpenker
- tanling8334
- kaizi1992
- xpenxpen
- gaojingsong
- wiseboyloves
- xiangjie88
- ranbuijj
- ganxueyun
- sichunli_030
- xyuma
- wangchen.ily
- jh108020
- lemonhandsome
- zxq_2017
- jbosscn
- Xeden
- luxurioust
- lzyfn123
- zhanjia
- forestqqqq
- johnsmith9th
- ajinn
- nychen2000
- wjianwei666
- hanbaohong
- daizj
- 喧嚣求静
- mwhgJava
- silverend
- kingwell.leng
- lchb139128
- lich0079
- kristy_yy
最新文章列表
http服务中使用闭包避免程序崩溃
func safeHandler(fn http.HandlerFunc) http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
defer func() {
if e, ok := recover().(error); ok {
...
开发心得体会 8.21 异常与错误处理【每天一点点】
1.多个环节一起运行,其中有互相影响的环节和互不相关的环节,组合在一个流程中。
因此需要做到对每个环节都进行异常捕获,同时对于上一个环节错误之后,
后面的每个环节是决定照常运行,还是不再进行处理或进入错误处理模式,
需要分别进行判断处理。
2.在循环遍历 如For,While中对于某一值遍历,如果中间出现异常,将会中断跳出循环,
而我们往往需要即使一个位置出错而不影响全部的遍历,把 ...
YII 怎样显示静态页 自定义错误页
在controller中加入,如sitecontroller
public function actions()
{
return array(
// page action renders "static" pages stored under 'protected/views/site/pages'
// They can be accessed vi ...