【Angular】源于angular传参

angualr的传参需要给到注意:
比如下面的getMajorType()方法,小括号里直接写4是会报错的,写成{LovId:4}这种形式就好了;(这里注意参量,首字母不能大写,这里是)

        questionService.getMajorType({LovId:4}).then(
            function (res) {
                $scope.majorList = [];
                for (var i = 0; i < res.data.length; i++) {
                    console.log("i:"+i);
                    /*初始化:*/
                    var a = {
                        id: i,
                        name: res.data[i].name
                    };
                    $scope.majorList.push(a);
                }
                console.log($scope.majorList);
            }
        );

还有这里:type的值可以为radio,check,cloze,tf,qa等;
【Angular】源于angular传参_第1张图片
熟悉并了解这种传参方式;

你可能感兴趣的:(【提高】)