主动的
信息
发送自由的、主动的、不需要接收被动事件即可进行的内容
- 主动消息
部分平台可能仅支持有限或不支持主动消息机制, 请根据实际情况进行使用
import { sendToChannel, sendToUser, Text } from 'alemonjs'
// 向指定频道发送消息
sendToChannel('ChannelID', format(Text('hello word')))
// 向指定用户发送消息
sendToUser('UserID', format(Text('hello word')))
- 数据格式
import { Text } from 'alemonjs'
// 把 数据参数 改为 数组变量
const data = format(Text('hello'), Text(' word'))