Angular.JS内置服务$http对数据库的增删改使用教程
2019/6/27 20:59:04
本文主要是介绍Angular.JS内置服务$http对数据库的增删改使用教程,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
本文主要介绍的是Angular.JS内置服务$http对数据库的增删改操作的相关内容,分享出来供大家参考学习,下面来看看详细的介绍:
一、使用$http查询MySQL数据
angular.module('app',[]) .controller('MyCtrl',function ($scope,$http) { $http.get('http://127.0.0.1:80/user/getUsers') .success(function (resp) { console.log(resp); }) .error() //jQuery /*$.get('url',function (data) { });*/ })
对应的后台Java代码:
public void getUsers(){ List<User> users = User.dao.find("select * from t_user"); renderJson(Users); }
二、$http实现对数据的增删改
(1)$http带参数发送请求
(2)对MySQL数据增删改
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>AngularJS $http</title> <link rel="stylesheet" href="css/foundation.min.css" rel="external nofollow" > <style type="text/css"> html,body{font-size:14px;} </style> </head> <body style="padding:10px;" ng-app="app"> <div ng-controller="MyCtrl"> <input type="text" ng-model="id"> <input type="text" ng-model="name"> <button class="button" onclick="addUser()">添加</button> <button class="button" onclick="delUser()">删除</button> </div> </body> <script src="js/angular.min.js"></script> <script src="app.js"></script> </html>
angular.module('app', []) .controller('MyCtrl', function ($scope, $http) { $scope.id=" "; $scope.name=" "; $scope.addUser = function () { $http.post('http://127.0.0.1:80/user/addUser',{id:$scope.id, name:$scope.name}) .success(function (resp) { if(resp.success){ alert("添加成功"); } }) } $scope.delUser = function () { $htp.post('http://127.0.0.1:80/user/delUser',{id:$scope.id}) .success(function () { if(resp.success){ alert('删除成功'); } }) } })
后台Java代码:
public void addUser(){ String id = getPara("id"); String name = getPara("name"); User user = new User(); boolean isok = false; if(id != null && id.equals("")){ isok = user.set("id",id).set("name",name).update(); }else{ isok = user.set("name",name).save(); } renderJson("seccess",isok); } public void delUser(){ String id = getPara("id"); boolean isok = User.dao.deleById(id); renderJson("seccess",isok); }
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家学习或者使用Angular.js能带来一定的帮助,如果有疑问大家可以留言交流,谢谢大家对找一找教程网的支持。
这篇关于Angular.JS内置服务$http对数据库的增删改使用教程的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-24Vue CLI多环境配置学习:从入门到实践
- 2024-11-24Vue CLI多环境配置学习:新手入门教程
- 2024-11-24Vue CLI学习:初学者指南
- 2024-11-24Vue CLI学习:从入门到上手的简单教程
- 2024-11-24Vue3+Vite学习:从零开始的前端开发之旅
- 2024-11-24Vue3阿里系UI组件学习入门教程
- 2024-11-24Vue3的阿里系UI组件学习入门指南
- 2024-11-24Vue3公共组件学习:新手入门教程
- 2024-11-24Vue3公共组件学习入门指南
- 2024-11-24vue3核心功能响应式变量学习