2013-10-12 36 views
0

我使用Pusher API通知,但它为我工作。我有组合框在我的网站上部署在天蓝色的这个组合框三个状态显示挂起完成requesttimeout当用户将改变组合框中的状态,所以Ajax请求将发送到JSON文件,我添加了频道和事件绑定。推送API通知不工作在Android模拟器以及浏览器

我也是模拟器收到信息

10-12 12:13:15.544: D/CordovaLog(1257): file:///android_asset/www/index.html: Line 28 : Pusher : State changed : unavailable -> connected 
10-12 12:13:15.544: I/Web Console(1257): Pusher : State changed : unavailable -> connected at file:///android_asset/www/index.html:28 
10-12 12:13:15.553: D/CordovaLog(1257): file:///android_asset/www/index.html: Line 28 : Pusher : Event sent : {"event":"pusher:subscribe","data":{"channel":"dispatcher_channel"}} 
10-12 12:13:15.553: I/Web Console(1257): Pusher : Event sent : {"event":"pusher:subscribe","data":{"channel":"dispatcher_channel"}} at file:///android_asset/www/index.html:28 
10-12 12:13:17.613: D/CordovaLog(1257): file:///android_asset/www/index.html: Line 28 : Pusher : Event recd : {"event":"pusher_internal:subscription_succeeded","data":{},"channel":"dispatcher_channel"} 
10-12 12:13:17.613: I/Web Console(1257): Pusher : Event recd : {"event":"pusher_internal:subscription_succeeded","data":{},"channel":"dispatcher_channel"} at file:///android_asset/www/index.html:28 
10-12 12:13:17.623: D/CordovaLog(1257): file:///android_asset/www/index.html: Line 28 : Pusher : No callbacks on dispatcher_channel for pusher:subscription_succeeded 
10-12 12:13:17.623: I/Web Console(1257): Pusher : No callbacks on dispatcher_channel for pusher:subscription_succeeded at file:///android_asset/www/index.html:28 

json.php这是蔚蓝

function updateRequestStatus($params) 
    { 
     global $api; 

     $params = json_decode($params, true); 

     $requestStatus = PageHelper::sanitizeInput($params['requestStatus'], FILTER_SANITIZE_STRING); 
     $requestID = PageHelper::sanitizeInput($params['requestID'], FILTER_SANITIZE_NUMBER_INT); 

     if(strtolower($requestStatus) == "completed") 
     { 
      $message = "User Response Has been Sent "; 
      $pusher = new Pusher(APP_KEY, APP_SECRET, APP_ID); 
      $data = array('message' => $message); 
      $pusher->trigger('dispatcher_channel', 'dispatcher_Response', $data); 
     } 

     return $api->updateRequestStatus($requestStatus, $requestID); 
    } 

和我使用Android上的哪些的index.html。

<!DOCTYPE HTML> 
<html> 
<head> 
<title></title> 

<meta name="viewport" content="width=device-width,initial-scale=1"/> 

<!-- JavaScript --> 


<script src="http://js.pusher.com/2.1/pusher.min.js" type="text/javascript"></script> 
<script src="js/cordova.js" type="text/javascript"></script> 

<script type="text/javascript"> 
    // Enable pusher logging - don't include this in production 
    Pusher.log = function(message) { 
     if (window.console && window.console.log) { 
     window.console.log(message); 
     } 
    }; 

    var pusher = new Pusher('APP_KEY'); 
    var channel = pusher.subscribe('dispatcher_channel'); 
    channel.bind('notification', function(data) { 
    setTimeout('getNotification()', 1000); 
    channel.bind('dispatcher_Response', function(data) {}); 
    }); 
    function getNotification() 
    { 
     navigator.notification.alert("status changed", function() {}); 
    } 
    </script> 

</head> 
</body> 
</html> 

回答

0

日志显示您已连接并订阅了dispatcher_channel频道。

运行json.php时,Pusher Debug Console显示的内容是什么?请参阅:http://pusher.com/docs/debugging#pusher_debug_console

它是否显示json.php到达Pusher的消息?

如果不是,那么你应该看看调试PHP代码。请参阅: https://github.com/pusher/pusher-php-server#debugging

如上所述,客户端功能似乎按预期工作。

+0

问题解决了PHP代码中存在的问题。 – Wajihurrehman

+0

你能告诉我为什么通知不会弹出,因为我检查了Android模拟器的猫日志,它显示我的味精即将到来,但不会弹出在模拟器上 – Wajihurrehman

+0

在上面的代码('channel.bind('dispatcher_Response',function data){});')你没有对事件数据做任何事情。 – leggetter

相关问题