gpt4 book ai didi

javascript - 使用 cordova-plugin-local-notifications 附件属性不显示图像

转载 作者:行者123 更新时间:2023-12-03 01:14:43 24 4
gpt4 key购买 nike

我是 Cordova android 开发的新手,希望创建一个非常简单的应用程序来显示最新的电影并向用户显示电影的横幅,我的代码如下,通知正在显示但它没有显示横幅。我的图像保存在 www/img 文件夹

 cordova.plugins.notification.local.schedule({
id: 1,
title: 'My first notification',
text: 'Thats pretty easy...',
attachments: ['file://img/logo.png'],
foreground: true,
vibrate: true
});

这是我的文件路径

enter image description here

下面是我想要实现的目标的示例,任何建议都会很好。

enter image description here

最佳答案

你的推送通知是什么样子的,看一下文件名及其扩展名,而不是文件名为Logo.jpg而你写的是logo.jpg。 Android 基于 Linux,这可能会导致错误。

我尝试用你的代码构建它,纯推送是没有图像的,点击从上面拉它后,它会显示这样的图像: enter image description here

我的代码是index.js中的一个简单代码:

// deviceready Event Handler
//
// Bind any cordova events here. Common events are:
// 'pause', 'resume', etc.
onDeviceReady: function() {
cordova.plugins.notification.local.schedule({
id: 1,
title: 'My first notification',
text: 'Thats pretty easy...',
attachments: ['file://img/logo.png'],
foreground: true,
vibrate: true
});

}

App推送消息 Push out of the App

看这个 Gif 看看图像(我知道,质量很糟糕): Look at this

关于javascript - 使用 cordova-plugin-local-notifications 附件属性不显示图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52070991/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com