本文主要介绍的是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="/UploadFiles/2021-04-02/angular.min.js">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能带来一定的帮助,如果有疑问大家可以留言交流,谢谢大家对的支持。
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件!
如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
狼山资源网 Copyright www.pvsay.com
暂无“Angular.JS内置服务$http对数据库的增删改使用教程”评论...
P70系列延期,华为新旗舰将在下月发布
3月20日消息,近期博主@数码闲聊站 透露,原定三月份发布的华为新旗舰P70系列延期发布,预计4月份上市。
而博主@定焦数码 爆料,华为的P70系列在定位上已经超过了Mate60,成为了重要的旗舰系列之一。它肩负着重返影像领域顶尖的使命。那么这次P70会带来哪些令人惊艳的创新呢?
根据目前爆料的消息来看,华为P70系列将推出三个版本,其中P70和P70 Pro采用了三角形的摄像头模组设计,而P70 Art则采用了与上一代P60 Art相似的不规则形状设计。这样的外观是否好看见仁见智,但辨识度绝对拉满。