我正在尝试使用php在元素上以角度发布多个值但是当我使用[]角度误差的符号时。如何将此元素指定为数组,以便可以在服务器端处理它。
ng-model="form_values.people[]" //This errors out.
Syntax Error: Token ']' not a primary expression at column 18 of the expression
$http({
url: "../ajax/my_script.php",
method: "GET",
params: $scope.form_values,
headers: {'Content-Type': 'application/x-www-form-urlencoded'}
})