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はこれです)

Webで見つけたこのコードを試していますが、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 に答える