3

如何为 sencha touch 2 应用程序实现推送通知?作为第一步,我需要将设备 ID 发送到 php 服务器。我在这方面做得还不够远。我刚刚创建了一个用于启用/禁用推送通知的滑块

Ext.define('MyApp.view.SettingsPanel', {
    extend: 'Ext.Panel',
    xtype:'settingspanel',
    id:'settingspanel',
    backButton : {
        visible : true,
        ui : 'blue_back_button'
    },
    config: {

            items:[

                   {
                       xtype:'togglefield',
                       name: 'pushnotifications',
                       value: 1,
                       label: 'Enable Push Notifications?',
                       labelWidth: '40%',
                       height:'100%'
                   } 
                   ]
        },


});

因此,当我启用上述滑块时,我需要将设备 ID 发送到服务器。我需要有关 android 和 ios 设备的帮助

4

1 回答 1

0

看一下这个:

http://blog.pubnub.com/building-a-pubnub-powered-chat-app-with-sencha-touch-2/

我用它在我的应用程序中制作推送通知,它就像魅力一样。

于 2013-01-24T06:34:11.013 回答