gpt4 book ai didi

jquery - 在浏览器中显示 Webdis 响应

转载 作者:可可西里 更新时间:2023-11-01 11:45:36 27 4
gpt4 key购买 nike

我正在尝试使用 Webdis 和 jQuery 在浏览器中显示 Redis 数据。 Redis 和 Webdis 从命令行(使用 curl)正常工作,但我无法在浏览器中显示数据。 Webdis 以 JSON 响应,curl 响应为 {"GET":"103"}。有人知道这个问题吗?欢迎提出改进任何这些的建议。谢谢!

代码如下:

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<!-- load JQuery from Google API -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js">
</script>

<!-- This is the jQuery template for the JSON returned by Webdis -->
<script id="webdisTemplate" type="text/x-jquery-tmpl">
<li>${GET}</li>

</script>

<!-- jQuery Ajax request through Webdis that feeds the Redis data into the template -->
<script type="text/javascript">
$(document).ready(function()
{
$.ajax({
url: "http://127.0.0.1:7379/GET/value",
data: "format=json",
dataType: "json",
success: function(data)
{
$("#webdisTemplate").tmpl(data.items).appendTo("#placeholder");
}
});
});
</script>
<title>Webdis Test</title>
</head>
<body>
<h4>Value:</h4>
<ul id="placeholder"></ul>
</body>
</html>

最佳答案

答案有点晚了,但我想它对其他人有用。我用了两台机器,所以如果有任何 CORS 问题它应该上升,我没有虽然有任何问题。我的代码片段介绍了如何通过 $.ajax 获取数据,如果您仍然遇到问题,请告诉我,以便扩展答案。

在你的js代码中:

var key = 123;

$.ajax({
url: "http://example.com:7379",
data: "GET/" + key,
type: 'POST',
success: function(data) {
$("outputArea").html(data.GET);
},
error: function(err) {
console.log("error", err);
});

$("#outputArea").html(data.GET);

希望对您有所帮助!

关于jquery - 在浏览器中显示 Webdis 响应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9122721/

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