gpt4 book ai didi

javascript - 通过 Ajax 发送带有额外参数的表单数据?

转载 作者:行者123 更新时间:2023-11-30 19:37:04 25 4
gpt4 key购买 nike

我正在尝试向我的 Codeigniter Controller 发送带有表单数据和一些其他参数的发布请求。这是我正在使用的代码。

function onSignIn(googleUser) {
console.log('onto the function');
var profile = googleUser.getBasicProfile();

var google_name = profile.getName();
var google_image = profile.getImageUrl();
var google_email = profile.getEmail();
console.log('got the details');
console.log('submitting');
var title = ('#title').val();
var message = ('#message').val();
$.ajax({
type: "POST",
url: 'http://localhost/review/submit',
data: {
title,
message,
'google_name': google_name,
'google_email': google_email,
'google_image': google_image,
},
success: function () {
alert('fuck');
}
});
}

我一直收到 $ is not defined 我不知道为什么会这样,因为当我删除 $ 它给了我 #title.val()不是函数

最佳答案

确保您提供的 jquery 引用具有正确的代码路径

在代码的头部部分包含下面的 CDN 链接

https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js

关于javascript - 通过 Ajax 发送带有额外参数的表单数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55828694/

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