第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

JQuery.Ajax() 無(wú)法正常工作不確定腳本是否正確加載

JQuery.Ajax() 無(wú)法正常工作不確定腳本是否正確加載

慕工程0101907 2023-09-14 18:12:48
我正在嘗試使用 API 通過(guò) MailChimp 發(fā)送電子郵件。通過(guò)這樣做,我可以避免使用任何類(lèi)型的后端。我不知道我的 Jquery 腳本文件設(shè)置是否錯(cuò)誤。$(document.ready(function () {  $('#survey').click(function() {    $.ajax({        type: “POST”,        url: “https://mandrillapp.com/api/1.0/messages/send.json”,        data: {          ‘key’: ‘a(chǎn)pi Key’,          ‘message’: {            ‘from_email’: ‘email’,            ‘to’: [                {                  ‘email’: ‘email’,                  ‘name’: ‘RECIPIENT NAME (OPTIONAL)’,                  ‘type’: ‘to’                }              ],            ‘a(chǎn)utotext’: ‘true’,            ‘subject’: ‘Class Survey’,            ‘html’: ‘Here is your survey link: <a>link</a>’          }        }       }).done(function(response) {         console.log(response);     });  });}); 以下是我在 VS Code 中收到的所有錯(cuò)誤我不知道為什么 VS Code 會(huì)突出顯示所有代碼。我還想提一下控制臺(tái)給出了這個(gè)錯(cuò)誤,即使它沒(méi)有提供太多信息。Uncaught SyntaxError: Invalid or unexpected token謝謝您的幫助!
查看完整描述

1 回答

?
千萬(wàn)里不及你

TA貢獻(xiàn)1784條經(jīng)驗(yàn) 獲得超9個(gè)贊

這是因?yàn)槟褂昧隋e(cuò)誤的雙引號(hào)

用這個(gè)"代替這個(gè)

用這個(gè)'代替

  $(document).ready(function() {

        $('#survey').click(function() {

            $.ajax({

                type: "POST",

                url: "https://mandrillapp.com/api/1.0/messages/send.json",

                data: {

                    'key': 'api Key',

                    'message': {

                        'from_email': 'email',

                        'to': [

                            {

                            'email': 'email',

                            'name': 'RECIPIENT NAME (OPTIONAL)',

                            'type': 'to'

                            }

                        ],

                        'autotext': 'true',

                        'subject': 'Class Survey',

                        'html': 'Here is your survey link: <a>link</a>'

                    }

                }

            }).done(function(response) {

                console.log(response); 

            });

        });

    });


查看完整回答
反對(duì) 回復(fù) 2023-09-14
  • 1 回答
  • 0 關(guān)注
  • 106 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)