RichMessage
XML, JSON 消息等富文本消息.
通常构造 LightApp 和 ServiceMessage
注意: 富文本消息的 RichMessage.contentEquals 和 RichMessage.toString 都不稳定. 将来可能在没有任何警告的情况下改变格式.
See also
服务消息 (XML, JSON)
小程序 (JSON)
Functions
contentEquals
Link copied to clipboard
open fun contentEquals(another: String, ignoreCase: Boolean = false): Boolean
Content copied to clipboard
判断内容是否与 another 相等.
open fun contentEquals(another: Message, ignoreCase: Boolean = false): Boolean
Content copied to clipboard
判断内容是否与 another 相等即 this
与 another 的 contentToString 相等.
open fun contentEquals(another: Message, ignoreCase: Boolean = false, strict: Boolean = false): Boolean
Content copied to clipboard
判断内容是否与 another 相等即 this
与 another 的 contentToString 相等. strict 为 true
时, 还会额外判断每个消息元素的类型, 顺序和属性. 如 Image 会判断 Image.imageId
contentToString
Link copied to clipboard
注意: 富文本消息的 RichMessage.contentEquals 和 RichMessage.toString 都不稳定. 将来可能在没有任何警告的情况下改变格式.
followedBy
Link copied to clipboard
将 this
和 tail 连接.