我尝试解析以下xml。我的playground can be found here

package main

import "fmt"
import "encoding/xml"

type ResultSlice struct {
    MyText []Result `xml:"results>result"`
}
type Result struct {
    MyResult string `xml:"text"`
}

func main() {
    s := `<myroot>
            <results>
              <result><text><strong>This has style</strong>Then some not-style</text></result>
              <result><text>No style here</text></result>
              <result><text>Again, no style</text></result>
        </results>
          </myroot>`
    r := &ResultSlice{}
    if err := xml.Unmarshal([]byte(s), r); err == nil {
        fmt.Println(r)
    } else {
        fmt.Println(err)
    }

}

这只会打印出纯文本,而html标记中的所有内容都会被忽略。 <strong>This has style</strong>被忽略。我该如何包括呢?

谢谢!

最佳答案

使用innerxml标签:

type ResultSlice struct {
    MyText []Result `xml:"results>result"`
}

type Result struct {
    Text struct {
        HTML string `xml:",innerxml"`
    } `xml:"text"`
}

游乐场:http://play.golang.org/p/U8SIUIvOC_

关于xml - 解析xml时如何保留html标记?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/27207119/

10-10 03:12