gpt4 book ai didi

jquery - 无法在客户端 html 上打印 json 响应

转载 作者:太空宇宙 更新时间:2023-11-04 02:45:10 24 4
gpt4 key购买 nike

我正在使用ajax从后端检索数据。我有一个 mysql 表。我想将员工姓名打印到客户端 HTML。在 ajax 请求中,我收到一个 JSON 对象作为响应,但无法打印请求中的数据并将其插入 html 标记中。我想在里面打印员工姓名 <div>容器。

$.ajax({
type: 'POST',
dataType: 'json',
url: 'http://localhost:3000/endpoint',
success: function(response) {
console.log('success');
console.log(response.data[0].empid);
$('#container').html("<h1>"+response.data[0].empname+"</h1>");
}
});
</script>
</head>
<body>
<div id="select_div"><input type="submit" name="submit" id="submitbut" /></div>
<div class="container"></div>
</body>

最佳答案

当您执行 $('#container') 时,您选择了 id 为“container”的元素,但没有这样的元素。相反,您的容器具有 container。因此,要么使用 $('.container') 按其类选择容器,要么在 HTML 中为其指定 container ID。

关于jquery - 无法在客户端 html 上打印 json 响应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56629651/

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