MikeWang
MikeWang
> Static Files - 静态资源中间件,twig主要是做webservice,作api最佳,当使用twig+前端(vue、react、angular等)单页应用开发一个后台时,希望直接运行twig而不需要web服务器,这个时候前端会有一些css > 、js等文件。 twig 支持 static handler,config支持直接增加 static handler, 而且twig 对于static handler 没有数量限制
0.8.8 版本统一调整 谢谢!
1.0 版本会重新设计Ctx接口
好的
这个需求有什么特殊的应用场景?
@StevenACoffman
``` graphql type Todo { id: ID! text: String! done: Boolean! uid: UUID! puid:UUID } type Query { todos: [Todo!]! } ``` -------- ``` code { todos{ uid puid }...
if need I can commit PR to fix #2794 @StevenACoffman
show your code, let me see see.
@0x221A look this https://github.com/google/uuid/blob/v1.3.1/sql.go#L15 ```golang func (uuid *UUID) Scan(src interface{}) error { switch src := src.(type) { case nil: return nil // look this case string: // if an empty...