我熟悉RESTful
API(CRUD
)與AngularJS
和Slim PHP
框架。我正在學習本教程:http://www.blog.iamaronbarbosa.com/building-a-basic-crud-application-using-angularjs-and-slim-php-framework-part-1/。而當應用程序試圖GET
數據(文件:angular-crud/slim/index.php
),CRUD與AngularJS和Slim PHP 404未找到
function ListCtrl($scope, $http) {
$http.get('api/users').success(function(data) {
$scope.users = data;
});
}
我得到的錯誤代碼,說明, Status Code: HTTP/1.1 404 Not Found
的URL得到的數據是:http://localhost/angular-crud/slim/api/users
。
編輯
但是,如果我申請了網址爲http://localhost/angular-crud/slim/api/index.php/users
它返回的數據的罰款。是否必須包括index.php
?如果沒有,是否有解決方法檢索使用url http://localhost/angular-crud/slim/api/users
的數據?
我對這個領域很新,如果問題很模糊,我很抱歉。我試着檢查端口,並使用RESTClient
運行測試,但最終空手。您對此問題的專家建議非常感謝:)
謝謝您的主席先生的答案。這是一個重寫問題:) – 2014-09-05 17:27:18