如何使用Laravel5在Angularjs中获取单个数据

时间:2018-02-20 14:05:24

标签: angularjs laravel-5

从angular到html检索单行/数据时遇到问题。我需要打印标题。下面是角度控制器的代码(部分):

    vm.showJoke = function(joke){
  console.log(joke);

  $http.get('http://localhost:8000/api/v1/jokes/' + joke, {
        //body: joke.joke,
        //user_id: $rootScope.currentUser.id
        //user_id: localstorageUser.role_id
    }).success(function(response) {
      //console.log(response.data.joke);
      vm.jokes_show = response.data.joke;
      console.log(vm.jokes_show);
        $scope.MessageAll = 'Joke shows! ';
    }).error(function(){
      console.log("error");
      $scope.MessageAll = 'Please try again';
    });
}

以下是我的HTML代码:

<span ng-hide="showEnabled">
                <a href="#jokes" ng-click="showEnabled=!showEnabled"><span class="glyphicon glyphicon-th-large" data-ng-click="jokes.showJoke(joke.joke_id)"></span></a>
            </span>


            <span ng-show="showEnabled" style="background-color:powderblue;">
                    <p style="background-color:powderblue;" ng-model="jokes_show"></p>
            </span>

以下是我在下面找到的回复:

{joke_id: 3, joke: "Quia in enim voluptates neque. Ullam eligendi ipsu…iente qui perferendis libero. Ut aut qui sint et.", submitted_by: "admin"}

笑话 : “Quia in enim在neque中占据了一席之地.Ullam eligendi ipsum eaque magni sit in fugit in.Papptate sapiente qui perferendis libero.Ut aut qui sint et。” joke_id : 3 由...所提交 : “管理员”

也可以看到相同的图像。

enter image description here

非常欢迎你的帮助。

0 个答案:

没有答案