gpt4 book ai didi

javascript - 意外的 token ILLEGAL ajax post

转载 作者:行者123 更新时间:2023-11-30 10:12:39 25 4
gpt4 key购买 nike

我在控制台日志中收到以下错误:

"Uncaught SyntaxError: Unexpected token ILLEGAL" on 7 line (url: ...). 

如果我注释第 7 行,我会得到:

"Uncaught SyntaxError: Unexpected token ILLEGAL" on 8 line.

我正在使用 jquery-2.1.0

这是我的代码:

var main = function(){
$('.btn').click(function(){
var sumCalc = $('#fieldname4_1').text();
var phone = $('#fieldname18_1').text();
var adminEmail = "thedrgef@gmail.com";

$.ajax({
url: “https://mandrillapp.com/api/1.0/messages/send.json”,
type: “POST”,
data: {
‘key’: ‘some key here’,
‘message’: {
‘from_email’: ‘some mail’,
‘to’: [{
‘email’: adminEmail,
‘name’: ‘admin’,
‘type’: ‘to’
}],
‘autotext’: ‘true’,
‘subject’: ‘subj’,
‘html’: ‘<h1>hello</h1>
<p>dats phone: </p>’ + phone
}
}
})
.done(function(response) {
console.log(response); // if you're into that sorta thing
});
});
}

$(document).ready(main);

最佳答案

JavaScript 字符串不能用 ' 引起来(左单引号) 和 (右单引号)字符。使用 '(撇号)或 "(引号)。

关于javascript - 意外的 token ILLEGAL ajax post,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25627352/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com