如何在Angularjs $http.post中传递参数

在这里,我试图将“$scope.getCourse =’adobe’”的值传递给服务器,以便返回相应的课程详细信息,从中可以从响应数据中使用ng-repeat填充列表.但是当我插入“$scope.getCourse”以及servelet url时,以下代码失败.
var courseApp = angular.module('courseApp',[]);

courseApp.controller('courseCtrl',['$scope','$http',function($scope,$http){
    //$scope.getCourse = 'adobe'; //need to pass this value to the server;

    $http.post('javaServerlet',$scope.getCourse).success(function(data){
        $scope.result = data.MainTopic;
        $scope.lessons = data.CourSEOutline;
    })  
}])

来自服装的json格式


{ 
    "MainTopic": "Adobe","RunningTime": "6h11min","Description": "Course Description comes here","CourSEOutline":
    [ 
        { "Lessons" : "Lesson 1","Title" : "Introduction1","Duration" : "31m 27s"},{ "Lessons" : "Lesson 2","Title" : "Introduction2","Duration" : "56m 05s"},]
}

请让我知道如何实现上述情景,我对于角度很新.

您的数据应该是一个键/对,尝试:
$http.post('javaServerlet',{course: $scope.getCourse})

该变量将在参数过程中到达服务器

相关文章

AngularJS 是一个JavaScript 框架。它可通过 注:建议把脚本放在 元素的底部。这会提高网页加载速度,因...
angluarjs中页面初始化的时候会出现语法{{}}在页面中问题,也即是页面闪烁问题。出现这个的原因是:由于...
AngularJS 通过被称为指令的新属性来扩展 HTML。AngularJS 指令AngularJS 指令是扩展的 HTML 属性,带有...
AngularJS 使用表达式把数据绑定到 HTML。AngularJS 表达式AngularJS 表达式写在双大括号内:{{ expres...
ng-repeat 指令可以完美的显示表格。在表格中显示数据 {{ x.Name }} {{ x.Country }} 使用 CSS 样式为了...
$http是 AngularJS 中的一个核心服务,用于读取远程服务器的数据。读取 JSON 文件下是存储在web服务器上...