gpt4 book ai didi

jquery - Ajax 请求包含无效字符

转载 作者:行者123 更新时间:2023-12-03 23:02:52 27 4
gpt4 key购买 nike

我创建了一个 AJAX 请求。在新的浏览器中它工作正常,但 IE7 告诉我在 function: 'gettestvaraibles' 所在的行中存在字符错误。有人能告诉我错误可能出在哪里吗?

$.ajax('http://testurl/?eID=testid', {
data: {
function: 'gettestvaraibles',
game_id: '630',
game_score: '50'
},
type: 'post',
dataType: 'json',
error: function(jqXHR, textStatus, errorThrown) {
console.log(jqXHR);
alert(errorThrown.message);
},
success: function() {
}
});

最佳答案

Function 是保留关键字。您需要更改它,或者将其用引号引起来:

data: {
"function": 'gettestvaraibles',
"game_id": '630',
"game_score": '50'
},

关于jquery - Ajax 请求包含无效字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10119453/

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