我有以下代码,使用包来绘制进度条
type tmpStruct struct {
}
func (t *tmpStruct) Write(p []byte) (n int, err error) {
fmt.Fprintf(os.Stdout, "%s", string(p))
return len(p), nil
}
func demoLoadingBarCount(maximumInt int) {
buf := tmpStruct{}
if nBuf, ok := interface{}(&buf).(io.Writer); ok {
bar := progressbar.NewOptions(
maximumInt,
progressbar.OptionSetTheme(progressbar.Theme{Saucer: "█", SaucerPadding: "-", BarStart: ">", BarEnd: "<"}),
progressbar.OptionSetWidth(100),
progressbar.OptionSetWriter(nBuf),
)
for i := 0; i < maximumInt; i++ {
bar.Add(1)
time.Sleep(10 * time.Millisecond)
}
}
}
一切正常,除了最后没有换行,正如您在此处看到的那样
我无法在 Write 函数中添加新行字符,因为这会导致在将每个字节推送到写入器后将其添加到新行。有什么巧妙的方法可以做到这一点吗?
编辑:我想要在进度条之后和下一行打印之前添加新行
噜噜哒
相关分类