2

YQL クエリの結果を JavaScript オブジェクトに保存したい

私の質問:

SELECT * FROM html WHERE url="http://myurl.com" and xpath="/html/body/center/table[1]/tr"

どうすれば続けなければなりませんか?YQL のドキュメントを読みましたが、本当に複雑だと思います。私もstackoverflowで検索しましたが、あまり役に立ちません。

オブジェクトは、JS の通常の JSON オブジェクトのようにする必要があります。

よろしく

4

2 に答える 2

1

このデータは、JSONPアプローチを使用して取得できます。脚本:

<script src="http://query.yahooapis.com/v1/public/yql?q=SELECT%20*%20FROM%20html%20WHERE%20url%3D%22http%3A%2F%2Fghse%3A12-13%40www.ghse.de%2Fvplan%2F12%2Fc%2Fc00082.htm%22%20and%20xpath%3D%22%2Fhtml%2Fbody%2Fcenter%2Ftable%5B1%5D%2Ftr%22&format=json&callback=callback"></script>

応答の処理に使用されるコールバック:

function callback(data) {
    console.log(data);
}

http://jsfiddle.net/bdCHz/

詳細については、YQLコンソールテスターもご覧ください。

これは、このJSONを手動で取得する方法の単なる例です。jQueryなどを使用してJSONPリクエストを発行できます。

于 2013-03-17T20:39:07.023 に答える
1

全体をまとめて保存することはできないかもしれませんが、具体的に必要な情報を取得して配列に整理し、その配列を保存することでデータを保存できます。

function getXML(Your_XML_URL) {
// Build the YQL query
var qryRSS = 'select * from rss where url=' + '"' + feed + '"';

// Initiate the YQL query
$.getJSON("http://query.yahooapis.com/v1/public/yql",
    {
        // These are the settings for your API call
        q: qryRSS,
        format: "json"
    },
    // Take the data you got from the YQL server and output it to the screen. The variable "data" holds the JSON you got back from the YQL server.
    function (data) {
        var myArrayName = [];
        // Create an object for each entry. If you don't want every entry in the XML files you can change data.query.results.item.length to whatever number you want.
        for (var i = 0; i < data.query.results.item.length; i += 1) {
            var singleEntry = {};
            dataLoc = data.query.results.item[i];

            var singleEntry.title = dataLoc.title;           //You would replace these
            var singleEntry.pub = dataLoc.pubDate;           //with the names of the tags
            var singleEntry.image = dataLoc.thumbnail.url;   //in your XML file.
            var singleEntry.url = dataLoc.link;
            var singleEntry.desc = dataLoc.description;

            //Add your object to the array.
            myArrayName.push(singleEntry);

        }
        localStorage.setItem("mySavedItem", JSON.stringify(myArrayName));
    });
}

次に、その情報を後で取得できます。

var myXMLArray = JSON.parse(localStorage.getItem("mySavedItem"));
console.log(myXMLArray[0].title);
console.log(myXMLArray[2].pub);
于 2014-08-21T16:58:51.043 に答える