0

我正在尝试做一些类似字典的事情。这个想法是有一个在线数据库。有人可以搜索术语并从数据库中获取描述。

这个怎么运作:

1) 将下载数据库中的整个术语并与 searchterm 进行比较。每个术语都有其特定的 ID。如果搜索词是数据库,则 ID 将被保存。

2)ID将与数据库一起发送到服务器,然后它应该收到描述

获取所有条款的 URL

http://s288617660.mialojamiento.es/api.php?rquest=terms

获取描述的网址

http://s288617660.mialojamiento.es/api.php?rquest=answers&param1=ID

现在这是我的搜索功能

<script>

    getAllTerms();


    function getAllTerms(){
        var url = "http://s288617660.mialojamiento.es/api.php?rquest=terms";

       $.get(url, function(data) {

          localStorage.setItem("terms", JSON.stringify(data));
          //alert(JSON.stringify(data));
        }).done(function() { /*alert(localStorage.getItem("terms"));*/ })
          .fail(function() { alert("error"); })
          .always(function() { /*alert("finished");*/ });     
    }


    function findTerm(){
        var content = $("#SearchTerm").val();
        //alert(content);
        var id = 0;

        var data = JSON.parse(localStorage.getItem("terms"));

        $.each(data, function(index, term) {
             //alert("My content " + content + ", term " + term.name);
             if(content == term.name){
                 id = term.id_term;
             }
        });

        //--------------my try to request the description

        var url_answers = "http://s288617660.mialojamiento.es/api.php?rquest=answers&param1="+id;
        //alert(url_answers);
        var answer = "";

        $.get(url_answers, function(data2) {
            localStorage.setItem("answer", JSON.stringify(data2));


            $.each(data2, function(index, object) {

                    answer = object.description+object.id_answer;

            });


        //-----------------end of my try


        //alert(id);
        var htmlStr = "";

        if(parseInt(id) > 0){
            //i found the term
            localStorage.setItem("idterm",id);

            htmlStr = "<li>" + content + "- id: " + id + answer +  "</li>"
        }else{
            //not found 
            htmlStr = "<li>Term not found</li>"
        }

        $('#SearchList').empty();
        $('#SearchList').append(htmlStr);
        $('#SearchList').listview("refresh");

    }


</script>

ID 请求可以正常工作,但描述请求不能。为什么?顺便说一句:这是一个android phonegap项目

4

0 回答 0