使用PHP从angularJS app将特定数据发送到json文件

时间:2015-10-23 07:28:13

标签: javascript php json angularjs

我有一个Library angularJS应用程序和一个JSON数据文件,其中包含一系列书籍信息,如下所示

[
{
    "name" : "test1",
    "pages": 0,
    "author": "author1",
    "year": 1940,
    "section": "history",
    "current": 0,
    "description": "bla bla bla",
    "bookUrl": "data/book.pdf"
},
{
    "name" : "test1",
    "pages": 0,
    "author": "author1",
    "year": 1940,
    "section": "history",
    "current": 0,
    "description": "bla bla bla",
    "bookUrl": "data/book.pdf"
}
]

"电流"是我正在阅读的当前书籍的当前页面 还有一个" next"和" prev"阅读视图中的按钮 当我按下" next"它增加了#34; + 1"到了#34;当前" num页面 问题是(如何使用PHP将此+1发送到"当前"在JSON文件中?) 我有这个PHP代码:

<?php
$jsonString = file_get_contents('library.json');
$data = json_decode($jsonString, true);
$data[0]['current'] = 3;
$newJsonString = json_encode($data);
file_put_contents('library.json', $newJsonString);
?>

请参阅($ data [0])是针对第一本书的索引,如何向PHP发送当前书籍的索引,以便更新&#34;当前&#34;当前图书的数据? 这是&#34; next&#34;功能:

scope.goNext = function() {
      if (scope.pageToDisplay >= pdfDoc.numPages) {
        return;
      }
      scope.pageNum = parseInt(scope.pageNum) + 1;
        $http.get("data/insert.php")
            .success(function(data, status, headers, config) {
        console.log("data inserted successfully");
        });
    };

以下是阅读控制器:

 app.controller('read', ['$scope','books', '$routeParams',function($scope,books, $routeParams) {
  books.success(function(data){
    $scope.book = data[$routeParams.bookId]
    $scope.pdfUrl = data[$routeParams.bookId].bookUrl;
    $scope.pdfName = data[$routeParams.bookId].name;
  });
//the pdf viewer options 
    //$scope.pdfUrl = 'data/tohfa12.pdf';
    $scope.scroll = 0;
    $scope.loading = 'Loading file please wait';
    $scope.getNavStyle = function(scroll) {
        if(scroll > 100) {
            return 'pdf-controls fixed';
        } else {
            return 'pdf-controls';
        }
    };
    $scope.onError = function(error) {
        console.log(error);
    };
    $scope.onLoad = function() {
        $scope.loading = '';
    };
    $scope.onProgress = function(progress) {
        console.log(progress);
    };
  $scope.currentBookIndex = parseInt($routeParams.bookId);
}]);

我知道它很复杂,但我确实需要它,谢谢。

1 个答案:

答案 0 :(得分:1)

您希望您的应用程序如何表现?

您需要根据您的请求发送bookIdpageNum

scope.goNext = function() {
  if (scope.pageToDisplay >= pdfDoc.numPages) {
    return;
  }
  scope.pageNum = parseInt(scope.pageNum) + 1;
    $http.get("data/insert.php", {
            param : { 
                bookId: $scope.bookId,
                pageNum: $scope.pageNum
            }
        })
        .success(function(data, status, headers, config) {
            console.log("data inserted successfully");
        });
};

顺便说一句。通过REST设计,GET http请求永远不会更改资源。 GET用于阅读。如果要更新资源,则应使用POST,PUT或DELETE