我不知道为什么type:"list"
的Chrome通知中的主要消息不会显示。
根据official documents,我们发送的选项中仍然需要message
来创建通知,但它不会在通知中显示消息。我在这里有我的选项对象 -
options={
type: "list",
title: "Test",
message: "This message doesn't get displayed",
iconUrl: "icon128.png",
items: [{ title: "But", message: "This gets displayed."},
{ title: "And", message: "This gets displayed."},
{ title: "And This", message: "Also gets displayed."}]
};
我错过了什么吗?有解决方法吗?我没有共享清单,因为如果我将type:"list"
更改为type:"basic"
并将items
替换为contextMessage
,则通知正常。我只想显示消息和列表。