|
@@ -37,11 +37,9 @@ func SolutionTypeGet(c echo.Context) error {
|
|
ThemeType string
|
|
ThemeType string
|
|
}{}
|
|
}{}
|
|
|
|
|
|
- // itemInfo, err := parse(v.ItemUrl)
|
|
|
|
- // if err != nil {
|
|
|
|
- // return c.String(604, "ertvwerawqfd-ItemUrl Parse failed: "+err.Error())
|
|
|
|
- // }
|
|
|
|
fmt.Println(v.Url)
|
|
fmt.Println(v.Url)
|
|
|
|
+ // (1) function 공유될 수 있도록 해서 작업요
|
|
|
|
+ // v.SolutionType, v.ThemeType = solType(&kkk)
|
|
retv.SolutionType = "Wordpress"
|
|
retv.SolutionType = "Wordpress"
|
|
retv.ThemeType = "Avada"
|
|
retv.ThemeType = "Avada"
|
|
// ret, _ := json.MarshalIndent(itemInfo, "", "\t")
|
|
// ret, _ := json.MarshalIndent(itemInfo, "", "\t")
|
|
@@ -71,6 +69,8 @@ func ProductPageGet(c echo.Context) error {
|
|
|
|
|
|
// (1)Url 의 HTML를 2번 가져오는데 아래와 같이 1번만 가져와서 처리할 수 있도록 수정요.
|
|
// (1)Url 의 HTML를 2번 가져오는데 아래와 같이 1번만 가져와서 처리할 수 있도록 수정요.
|
|
// kkk := htmlGet(row.Uri)
|
|
// kkk := htmlGet(row.Uri)
|
|
|
|
+
|
|
|
|
+ // 전체 웹사이트가 아니라 개별 상품페이지(1개페이지)의 경우 SolutionType 없이 request됨
|
|
if v.SolutionType == "" {
|
|
if v.SolutionType == "" {
|
|
// v.SolutionType, v.ThemeType = solType(&kkk)
|
|
// v.SolutionType, v.ThemeType = solType(&kkk)
|
|
}
|
|
}
|