如何为 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 设备的帮助