我正在尝试使用 WAMP 服务器学习主干.JS。当我尝试使用 fetch 函数从数据库中检索数据时,我无法将从数据库中提取的数据转换为 JSON 对象。所以这里我使用 Index.php 作为客户端,使用 views.php 作为服务器端。我的数据库名称是 dss。提前致谢。所以这是我的代码
索引.php
<!doctype html>
<html>
<title>
backbone example
</title>
<body>
<script src="jquery-1.9.1.js"></script>
<script src="underscore.js"></script>
<script src="backbone.js"></script>
<div id="container">
<h1>
HELLO
</h1>
<div id="page">
</div>
</div>
<script>
var User=Backbone.Collection.extend(
{
url:'backbone sample/users'
}
);
var UserList=Backbone.View.extend(
{
el:'#page',
render:function()
{
var that=this;
var users=new User;
users.fetch({
success:function()
{
alert('success');
}
}
);
}
}
);
var router=Backbone.Router.extend(
{
routes:
{
'':'home'
}
});
var userList=new UserList();
var rou=new router();
rou.on('route:home',function(){
userList.render();
});
Backbone.history.start();
</script>
</body>
</html>
用户.php
<?php
$request_method = strtolower($_SERVER['REQUEST_METHOD']);
$a=$_GET['id'];
mysql_connect("localhost", "root", "") or die("connection error");
mysql_select_db("dss") or die("db error");
$results= mysql_query("select * from subscribers where EmailId='$a'");
?>