0

商品情報を取得して表示する関数「getInfoProduits()」を作成します。これを行うために、「document.createElement("div");」を使用して「div」を作成します。これには製品情報が含まれます。しかし問題は、この関数を呼び出すボタンをクリックするたびに、これらの div がこの関数への各呼び出しを乗算することです。それは完全に論理的ですが、まだ解決策がありません。これは次の関数です。

function getInfoProduits()
{
    var request = new XMLHttpRequest();
    if(i<idProduits.length)
        {
            request.open("GET","http://patisserie-orient.fr/prestashop/prestashop/api/products/"+idProduits[i]+"?PHP_AUTH_USER="+PHP_AUTH_USER+"&ws_key="+ws_key,true);

            request.onreadystatechange = function()
                {
                    if(request.readyState==4)
                    {
                        //alert("Status2 is  "+request.status);
                        if (request.status == 200 || request.status == 0)
                        {
                            response1  = request.responseXML.documentElement;
                            nameProduits[i] = response1.getElementsByTagName('name')[0].getElementsByTagName('language')[0].firstChild.data;
                                                            priceProduits[i] = response1.getElementsByTagName('price')[0].firstChild.data+" €";
                                                            descriptionProduits[i] = response1.getElementsByTagName('description_short')[0].getElementsByTagName('language')[0].firstChild.data;
                                                            quantitieProduitsDisponible[i] = response1.getElementsByTagName('quantity')[0].firstChild.data;
                                                            idImageProduits[i] = response1.getElementsByTagName('image')[0].getElementsByTagName('id')[0].firstChild.data;


                            maDiv = document.createElement("div");
                            maDiv.id = 'id_de_la_div'+i;

                            malabel = document.createElement("div");
                            malabel1 = document.createElement("div");



                            malabel.innerHTML=nameProduits[i];
                            malabel1.innerHTML=priceProduits[i];


                                                            maDiv.innerHTML='<img src='+url+'  width="50" height="50" align="right">';

                            maDiv.className="ui-bar ui-bar-e cadre";
                            document.getElementById("divbar").appendChild(maDiv);                           
                            document.getElementById('id_de_la_div'+i).appendChild(malabel);
                            document.getElementById('id_de_la_div'+i).appendChild(malabel1);


                            maDivvide = document.createElement("div");
                            maDivvide.innerHTML='<br>';
                            document.getElementById("divbar").appendChild(maDivvide);
                            i++;
                             getInfoProduits1();
                         }
                     }
                }

            request.send();

        }   
    else
        {
            return;
        }

}
4

1 に答える 1

0

「要素のイベントにハンドラーをアタッチします。ハンドラーは要素ごとに最大 1 回実行されます。」必要なものがあるようです!

jQuery.one()

純粋なJSソリューションもあります

fnname = (function(){
    var counter = 0; 
    return function(param1, param2, ...) {
        if (counter > 0) {
            return;
        }
        counter++;

        // your normal function code here   };
})();
于 2012-03-16T08:50:31.877 に答える