{
"GCM": "{ \"data\": {\"message\":\"test image\",\"image\":\"http://www.cespage.com/design/graphics/redstar.gif\",\"title\":\" Shopping!!!\"} }"
}
这是我从AWS SNS控制台发布的数据,该应用有此插件https://github.com/phonegap/phonegap-plugin-push
我们使用离子框架,config.xml有这个
<feature name="http://api.phonegap.com/1.0/notification" />
<gap:plugin name="com.phonegap.plugins.pushplugin" version="2.5.0" />
我探索过
https://github.com/phonegap/phonegap-plugin-push/blob/master/docs/API.md#pushonnotification-callback和
https://github.com/phonegap/phonegap-plugin-push/blob/master/src/android/com/adobe/phonegap/push/GCMIntentService.java
如果数据包含一个名为image的元素,它应该从图像URL加载图像。但它并没有。如何解决这个问题?
PS:我是后端开发人员,没有接触过应用程序开发。