0
我有這樣的事情,讓我成功地訪問功能參數如下:如何訪問已傳遞給函數的多個參數?
HTML:
角:
$scope.showContent = function(attrs){
$http({
url: attrs,
method: "POST"
})
.success(function (data, status, headers, config) {
$scope.my_content = data;
})
.error(function (data, status, headers, config) { $scope.status = status; });
};
但如果我有一個以上的參數嗎?例如:
<div ng-click="showContent('parameter1', 'parameter2')">
我想我可以做類似$scope.param1 = attrs[0]
等,但沒有奏效。我怎樣才能訪問這兩個參數?
,但謝謝你的答案!我仍然是一個新手。 –