Sumber daya yang dimuat... Pemuatan...

Menekuk dan mendorong

Penulis:Anak laki-laki, Tanggal: 2019-07-29 19:38:03
Tag:Mendorong

  • $.ddNotice (title, content) > title: tipe string, judul yang akan didorong > content: tipe aritmatika, format markdown

$.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')
}

Artikel terkait

Informasi lebih lanjut