goのmainの中でimportしたものを使うと使用できますが、
それを関数化して使用するとundefined判定されます
恐らくimportしたものを関数へ何らかの形で渡すのかと思いますが...
ご教授頂けると幸いです。
正常に動くもの↓
golang
1package main 2 3import ( 4 "fmt" 5 "io/ioutil" 6 "net/http" 7 8 "github.com/moovweb/gokogiri" 9 "github.com/moovweb/gokogiri/xpath" 10) 11 12func main() { 13 resp, _ := http.Get("https://github.com/PuerkitoBio/goquery") 14 page, _ := ioutil.ReadAll(resp.Body) 15 16 // parse the web page 17 doc, _ := gokogiri.ParseHtml(page) 18 xps := xpath.Compile("//h1") 19 defer doc.Free() 20 ss, _ := doc.Root().Search(xps) 21 for _, s := range ss { 22 fmt.Println(s.String()) 23 } 24} 25
undefinedのエラーが出るもの↓
golang
1package main 2 3import ( 4 "fmt" 5 "io/ioutil" 6 "net/http" 7 8 "github.com/labstack/echo" 9 "github.com/moovweb/gokogiri" 10 "github.com/moovweb/gokogiri/xpath" 11) 12 13func main() { 14 e := echo.New() 15 e.POST("/article_content", getArticleContent) 16 e.Logger.Fatal(e.Start(":40012")) 17} 18 19func getArticleContent(c echo.Context) error { 20 url := c.FormValue("url") 21 xpath := c.FormValue("xpath") 22 23 resp, _ := http.Get(url) 24 page, _ := ioutil.ReadAll(resp.Body) 25 26 doc, _ := gokogiri.ParseHtml(page) 27 28 //※下記コードでxpath.Compile undefined (type string has no field or method Compile) 29 xps := xpath.Compile("//h1") 30 defer doc.Free() 31 ss, _ := doc.Root().Search(xps) 32 for _, s := range ss { 33 fmt.Println(s.Content()) 34 } 35}
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/02/22 22:54