我正在尝试将点击按钮的名称/ ID插入数据库。
<button id="test" class="button button-light" data-ng-click="showAlert($event)">Click Me</button>
我正在获取按钮的id(测试)并将其显示为警告
$scope.showAlert = function(event){
alert(event.target.id);
}
获取ID工作正常。但是可以将按钮的id / name发送到数据库字段吗?
如何将此id添加到此函数中(此时我只有输入字段的用户名,并且工作正常)
$scope.addnew = function(filename) {
$http.post('addtodb.php',{'username' : $scope.username}
).success(function (data, status, headers, config) {
});
}