Skip to content

Instantly share code, notes, and snippets.

View lujiacn's full-sized avatar

JL lujiacn

  • earth
  • earth
View GitHub Profile
package main
import (
"fmt"
// "github.com/nchern/go-R/R"
"io/ioutil"
"os"
"os/exec"
"strings"
"time"
From http://gorevel.cn/topic/14
1、使用刀符$访问全局变量,后面一种可以简化代码,省去了临时变量的定义
{{$user := .user}}
{{range .bookings}}
{{$user.Name}}
{{end}}
或(推荐)