0

我正在为 html5 中的 android 开发应用程序,我需要读取这样的 xml 文件:

<?xml version="1.0" encoding="UTF-8"?>
<noticias>
    <dict>
        <titulo>Example of title</titulo>
        <body>Here goes the body</body>
        <subtitulo>whololoooooooo</subtitulo>
        <key>dep</key>
        <dep>general</dep>
        <imgurl></imgurl>
        <url>http://www.upcomillas.es/</url>
    </dict>
    <dict>
        <titulo>Another title</titulo>
        <body>The body</body>
        <subtitulo>whololoooooooo</subtitulo>
        <key>dep</key>
        <dep>general</dep>
        <imgurl></imgurl>
        <url>http://www.upcomillas.es/</url>
    </dict></noticias>

我正在用 jQuery 做这件事。但是当我尝试我的 html 时(我的 html 是这个

我正在尝试使用我在网上找到的这段代码,但我在 chrome、safari、firefox 中打开它,它什么也没做!!!:(

我试图找到一种方法来阅读这个 xml,但我真的在互联网上找不到任何东西。有人可以帮忙吗?

非常感谢!!!

4

1 回答 1

0

只是一个例子,首先,但您可能会寻找一个与 xml 一起使用的 jQuery 模板引擎

<html>
<body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script>
    $(document).ready(function() {
        $.get("noticias.xml", function(data) {
            var dicts = $(data).find("dict");
            for (var i = 0; i < dicts.length; i++) {
                var dict = dicts[i];
                $("body").append("<p><a href=\"" + xmlText(dict, "url") + "\">" + xmlText(dict, "titulo") + "</a></p>");
                $("body").append("<p>" + xmlText(dict, "body") + "</p>");
                $("body").append("<p>" + xmlText(dict, "subtitulo") + "</p>");
                $("body").append("<p>" + xmlText(dict, "key") + "</p>");
                $("body").append("<p>" + xmlText(dict, "dep") + "</p>");
            }
        }, "xml");
    });

    function xmlText(elem, name) {
        return $(elem).find(name).text();
    }
</script>
</body>
</html>
于 2013-01-03T12:25:30.553 回答