如何运行简单的Php API?

时间:2015-10-06 22:15:33

标签: php api slim

我在我的API中使用了Php Slim Framework。我将Slim Framework安装到我服务器上的web根目录并复制我编码的index.php文件。

的index.php:

<?php
require 'vendor/autoload.php';

$app = new \Slim\Slim();
$app->contentType('application/json');
$app->get('/users', 'getUsers');
$app->get('/user/:id', 'getUser');
$app->run();

function getConnection() {
$dbhost="localhost";
$dbuser="";
$dbpass="";
$dbname="";
$dbh = new PDO("mysql:host=$dbhost;dbname=$dbname", $dbuser, $dbpass);
$dbh->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
return $dbh;
}

function getUsers() {
$sql = "select * FROM manga";
try {
$db = getConnection();
$stmt = $db->query($sql);
$users = $stmt->fetchAll(PDO::FETCH_OBJ);
$db = null;
echo json_encode($users);
}
catch(PDOException $e) {
echo json_encode($e->getMessage());
}
}
?>

我收到500(内部服务器错误)。

编辑:我更改了“$ app = new Slim();”到“$ app = new \ Slim \ Slim();”然后收到以下错误。

我正在使用EasyEngine(Nginx)。

enter image description here

编辑-2:现在500内部消失但显示另一个错误。

XMLHttpRequest cannot load http://api.mangayurdu.com/users. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://deneme.mangayurdu.com' is therefore not allowed access.

以下是获取JSON数据的代码:

 .factory('MY', function($http){
  var factory = {};
  var url = 'http://api.mangayurdu.com/users?callback=JSON_CALLBACK';
  factory.isimler = $http.get(url);
  return factory;
  })

1 个答案:

答案 0 :(得分:3)

从发布的代码看起来,Slim找不到名为getUser的函数。 getUsers()在您的代码中定义,但没有getUser()函数。