• 中文分词
  • // 分词
    func fenci(str string) string {
       opt := jj.NewOpt()
       opt.IsPost = true
       opt.Formdata["ci"] = str
       res := jj.Get(fenciServer, opt)
       return res.Html
    }