TODO--, version 0.99beta

This commit is contained in:
john
2018-08-01 18:44:43 +08:00
parent 4d9d531649
commit 53511f20ce
3 changed files with 29 additions and 3 deletions

3
TODO
View File

@ -10,8 +10,6 @@ ghttp.Response增加输出内容后自动退出当前请求机制不需要用
Cookie&Session数据池化处理
ghttp.Client增加proxy特性
gtime增加对时区转换的封装并简化失去转换时对类似+80500时区的支持
改进gf-orm的where查询功能参考thinkphp 里的where查询语法
gpage分页增加对自定义后缀的支持如:2.html, 2.php等等
gvalid包增加tag与校验规则绑定的支持特性
ghttp获取参数支持直接转struct功能
map转struct增加对tag的支持
@ -49,5 +47,6 @@ DONE:
27. gproc进程间通信增加分组特性不同的进程间可以通过进程ID以及分组名称发送/获取进程消息;
28. ORM增加获取被执行的sql语句的方法
29. gdb增加查询缓存特性
30. gpage分页增加对自定义后缀的支持如:2.html, 2.php等等

View File

@ -0,0 +1,27 @@
package main
import (
"gitee.com/johng/gf/g/frame/gmvc"
"gitee.com/johng/gf/g"
)
type User struct {
gmvc.Controller
}
func (c *User) Index() {
c.View.Display("index.html")
}
func main() {
g.View().SetPath("C:/www/static")
s := g.Server()
s.BindController("/user", new(User))
s.SetPort(8199)
s.Run()
}

View File

@ -1,5 +1,5 @@
package gf
const VERSION = "0.98 beta"
const VERSION = "0.99 beta"
const AUTHORS = "john<john@johng.cn>"