goframe
框架提供了丰富的调试功能,由gdebug
组件实现。
所谓的“调试”方法大多数和开发环境有一定关系,包含堆栈和调用链信息分析,并且性能往往不是特别高。
使用方式:
import "github.com/gogf/gf/v2/debug/gdebug"
接口文档:
https://pkg.go.dev/github.com/gogf/gf/v2/debug/gdebug
方法列表:
func BinVersion() string
func BinVersionMd5() string
func Caller(skip ...int) (function string, path string, line int)
func CallerDirectory() string
func CallerFileLine() string
func CallerFileLineShort() string
func CallerFilePath() string
func CallerFunction() string
func CallerPackage() string
func CallerWithFilter(filter string, skip ...int) (function string, path string, line int)
func FuncName(f interface{}) string
func FuncPath(f interface{}) string
func GoroutineId() int
func PrintStack(skip ...int)
func Stack(skip ...int) string
func StackWithFilter(filter string, skip ...int) string
func StackWithFilters(filters []string, skip ...int) string
func TestDataPath(names ...string) string
熟悉PHP的同学可能比较好理解,这里某些方法其实和PHP的部分魔术常量功能一致。CallerDirectory
对应__DIR__
,CallerFilePath
对应__FILE__
,CallerFunction
对应__FUNCTION__
。
基本介绍WebServer提供服务需要方法/对象的支持,ghttp包支持多种路由注册模式,为开发者提供非常强大和灵活的接口功能...
Response输出采用了缓冲控制,输出的内容预先写入到一块缓冲区,等待服务方法执行完毕后才真正地输出到客户端。该特性在提高...