Bu mümkün mü?

2 Cevap php

Ben Uploadify kullanıyorum, bir sorum var, ve bir dosya upload bitirdiğinde her zaman, komut bir ajax çağrısı onComplete statement, and the code from the onComplete açıklamada bulunan bir kod çalışır bir sayfaya, komut ilk defa sayfa X eriştiklerinde X, nasıl bilebilirim diyelim?

2 Cevap

Although I'm not familiar with uploadify, if you set a variable in the global scope (outside the onComplete), I'll call it var hasBeenCalled, set it to false at the page load. When onComplete is called, do:

if (hasBeenCalled)
{
// not the first time
}
else
{
//first time
hasBeenCalled = true;
}

Umarım yardımcı olur

Bu deneyin:

var myFirstEvent = false;
var myFunOnComplete = function()
{
    if (!myFirstEvent)
    {
       // code for fist instance
    }

    // set finish the first instance
    myFirstEvent = true;

    // code for ajax call
    callAjax();

}


jQuery('#fInput').uploadify({
  ...
  'onComplete': myFunOnComplete,
  ...
});