- Square
- Nails pushed
Nails pushed
Author:
One punch boy, Date: 2019-07-29 19:38:03
Tags:
PushMessage
- $0.ddNotice (title, content)
> title: String type, pushed title
> content: Array type, markdown format
$.ddNotice = function(title, content) {
content = content == null ? title : content instanceof Array ? content.join('\n') : content
HttpQuery(DING_URI, {
method: 'POST',
timeout: 3000,
data: JSON.stringify({
msgtype: 'markdown',
markdown: {
title: title,
text: content
}
})
}, null, 'Content-Type: application/json')
}
Related
More