2011-10-07 33 views
0

我正在使用AppMobi.device.getRemoteData方法從我託管在公共服務器上的web服務獲取數據。這個web服務每次訪問它時都返回一個隨機數。AppMobi .device.getRemoteData緩存

當我在XDK的模擬器上測試我的應用程序(在Chrome中)時,我每次都得到隨機數。

但是,當使用「測試任何地方」功能在我的iPad上測試應用程序時,我第一次得到隨機值,然後我爲隨後的請求獲得相同的值。 似乎有些東西正在iPad上測試,而我無法弄清楚。

任何有關這個問題的幫助將不勝感激。

我粘貼了下面的代碼。

由於提前, 阿希什

getValue = function() { 

      AppMobi.device.getRemoteData("http://122.181.151.75/DwebMobile/RandomNumService.svc/GetRandomValue", "GET", "", "success_handler", "error_handler"); 
     } 

    function success_handler(data) { 
      var ret = JSON.parse(data); 
      var canvas = document.getElementById('id1'); 
      if (canvas.getContext) { 
       var ctx = canvas.getContext('2d'); 
       ctx.clearRect(0, 0, canvas.width, canvas.height); 
       drawShape(); 
       ctx.fillStyle = '#FF0000'; 
       ctx.font = 'italic 12px sans-serif'; 
       ctx.textBaseline = 'top'; 
       ctx.fillText(ret.d, 22, 70); 
      } 
      AppMobi.Cache.clearAllCookies(); 
     } 
     function error_handler(data) { alert("error: " + data); } 



<body> 
     <button id="btnBeep" ontouchstart="getValue();"> 
      Get Value</button> 
     <canvas id="id1"></canvas> 
    </body> 
+0

fillText有可能失敗。您是否嘗試提醒數據在設備上檢查它? – user983792

回答

1

我們在應用*實驗室測試基本的隨機數Web服務調用。 AppMobi.device.getRemoteData不會緩存結果,所以錯誤出現在您的JavaScript代碼中。

Ian