我試圖在瀏覽器中使用Webdis和jQuery顯示Redis數據。 Redis和Webdis正在從命令行(使用curl)正常工作,但我無法獲取要在瀏覽器中顯示的數據。 Webdis以JSON響應,並且curl響應爲{「GET」:「103」}。任何人都知道問題?歡迎提出任何改進建議。謝謝!在瀏覽器中顯示Webdis響應
的代碼如下:
<!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>
您是否試圖將「format = json」傳遞給您的服務器方法?如果不是,則「data:」屬性表示您想要傳遞的參數,並且必須由服務器方法定義。 – 2012-02-03 01:58:53
這確實看起來相當錯誤。發佈您的PRECISE curl命令行。 – bmargulies 2012-02-03 02:00:10