Die Ressourcen sind geladen. Beförderung...

Die Nägel werden geschoben.

Schriftsteller:Ein Junge, Datum: 2019-07-29
Tags:Schieben

  • $.ddNotice ((title, content)) > title: String-Typ, geschobene Titel > content: Array-Typ, 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')
}

Inhalte dazu

Weitere Informationen