0

我正在尝试使用 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'");

                ?>
4

1 回答 1

1

我同意,现在离开 mysql_* funcs 并使用 mysqli_* 或 PDO。我对骨干网或如何调用 users.php 一无所知,但对于 PHP,我将使用 mysqli 来回显 json 对象:

echo json_encode(mysqli_fetch_object($results));
于 2013-10-08T19:17:37.107 回答