mirror of
https://gitee.com/johng/gf
synced 2026-06-29 02:26:29 +08:00
11 lines
220 B
Go
11 lines
220 B
Go
package main
|
|
|
|
import (
|
|
"github.com/gogf/gf/g/os/gview"
|
|
"github.com/gogf/gf/g/util/gutil"
|
|
)
|
|
|
|
func main() {
|
|
gutil.Dump(gview.ParseContent(`{{"<div>测试</div>去掉HTML标签<script>var v=1;</script>"|text}}`, nil))
|
|
}
|