当我放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() .'}}';
}
?>
答案 0 :(得分:0)
这似乎很可能是跨站点脚本,这就是它被阻止的原因。
请记住,如果您从计算机上运行网站并尝试使用javascript访问其他域,除非您使用的是JSONP(Jason with Padding),否则它将无效。
请参阅以下内容: