1

当我把var serviceURL = //localhost/services/它工作并显示数据库时,但是当我把它放到网上时,服务器不工作。谁能帮我?我使用 PhoneGap 在 XCode 上工作。

这是我的 list.js getJSON

var serviceURL = "http://panchoslimi.bugs3.com/services/";

var employees;

$('#employeeListPage').bind('pageinit', function(event) {
getEmployeeList();
});

function getEmployeeList() {


    $.getJSON(serviceURL  + 'getDoctors.php',function(data){
    $('#employeeList li').remove();


    employees = data.items;

    $.each(employees, function(index, employee) {
        $('#employeeList').append('<li> <a href="DoctorDetails.html?id=' +    employee.id + '">' +
                                    '<h4> Dr. ' + employee.firstName + ' ' + employee.lastName + '</h4>' +
                '<p>' + employee.title + '</p>');
    });
    $('#employeeList').listview('refresh');

  });

     }
    <?php

    include 'config.php';

  $sql = "SELECT e.id, e.firstName, e.lastName, e.title, e.picture, count(r.id)  

 reportCount " .
"FROM employee e left join employee r on r.managerId = e.id " .
"GROUP BY e.id ORDER BY e.lastName, e.firstName";


    try {
$dbh = new PDO("mysql:host=$dbhost;dbname=$dbname", $dbuser, $dbpass);  
$dbh->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
$stmt = $dbh->query($sql);  
$MMC = $stmt->fetchAll(PDO::FETCH_OBJ);
$dbh = null;
echo '{"items":'. json_encode($MMC) .'}';
    } catch(PDOException $M) {
echo '{"error":{"text":'. $M->getMessage() .'}}';
    }


    ?>
4

1 回答 1

0

这似乎很可能是跨站点脚本,这就是它被阻止的原因。

请记住,如果您从您的计算机上运行该站点并尝试使用 javascript 访问另一个域,除非您使用 JSONP(Jason with Padding),否则它将无法正常工作。

请参阅以下内容:

于 2013-04-19T18:10:39.617 回答