Update tmpl.go
This commit is contained in:
parent
0faf844242
commit
c501d1dcd1
1 changed files with 3 additions and 0 deletions
3
tmpl.go
3
tmpl.go
|
@ -16,6 +16,7 @@ func do_impl(last_data tmpl_data) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// 读取模板
|
// 读取模板
|
||||||
|
// read the template
|
||||||
nex_tmpl, err := template.New("nex").Parse(string(f))
|
nex_tmpl, err := template.New("nex").Parse(string(f))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
fmt.Println("[ tmpl err ]", err)
|
fmt.Println("[ tmpl err ]", err)
|
||||||
|
@ -23,6 +24,7 @@ func do_impl(last_data tmpl_data) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// 覆盖创建要写入的 nex 文件
|
// 覆盖创建要写入的 nex 文件
|
||||||
|
// create the output nex file
|
||||||
new_file, err := os.OpenFile(file_output, os.O_WRONLY|os.O_TRUNC|os.O_CREATE, 0666)
|
new_file, err := os.OpenFile(file_output, os.O_WRONLY|os.O_TRUNC|os.O_CREATE, 0666)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
fmt.Println("[ create or open file error ]", err)
|
fmt.Println("[ create or open file error ]", err)
|
||||||
|
@ -31,6 +33,7 @@ func do_impl(last_data tmpl_data) {
|
||||||
defer new_file.Close()
|
defer new_file.Close()
|
||||||
|
|
||||||
// 写入 nex 模板
|
// 写入 nex 模板
|
||||||
|
// write the nex data
|
||||||
err = nex_tmpl.Execute(new_file, last_data)
|
err = nex_tmpl.Execute(new_file, last_data)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
fmt.Println("[ err at tmpl exec ]", err)
|
fmt.Println("[ err at tmpl exec ]", err)
|
||||||
|
|
Loading…
Reference in a new issue