当前位置: 首页 > news >正文

php动态网站开发实训目的指数分布

php动态网站开发实训目的,指数分布,网页简单制作流程,深圳全国网站制作哪个好2.3 删除部门 查询部门的功能我们搞定了,下面我们开始完成删除部门的功能开发。 2.3.1 需求 点击部门列表后面操作栏的 "删除" 按钮,就可以删除该部门信息。 此时,前端只需要给服务端传递一个ID参数就可以了。 我们从接口文档中也…

2.3 删除部门

查询部门的功能我们搞定了,下面我们开始完成删除部门的功能开发。

2.3.1 需求

点击部门列表后面操作栏的 "删除" 按钮,就可以删除该部门信息。 此时,前端只需要给服务端传递一个ID参数就可以了。 我们从接口文档中也可以看得出来。

2.3.2 接口文档

删除部门

  • 基本信息

    请求路径:/depts/{id}
    ​
    请求方式:DELETE
    ​
    接口描述:该接口用于根据ID删除部门数据
  • 请求参数 参数格式:路径参数

    参数说明:

    参数名类型是否必须备注
    idnumber必须部门ID

    请求参数样例:

    /depts/1
  • 响应数据 参数格式:application/json

    参数说明:

    参数名类型是否必须备注
    codenumber必须响应码,1 代表成功,0 代表失败
    msgstring非必须提示信息
    dataobject非必须返回的数据

    响应数据样例:

    {"code":1,"msg":"success","data":null
    }

2.3.3 思路分析

接口文档规定:

  • 前端请求路径:/depts/{id}

  • 前端请求方式:DELETE

问题1:怎么在controller中接收请求路径中的路径参数?

@PathVariable

问题2:如何限定请求方式是delete?

@DeleteMapping

2.3.4 功能开发

通过查看接口文档:删除部门

请求路径:/depts/{id}

请求方式:DELETE

请求参数:路径参数 {id}

响应数据:json格式

DeptController

@Slf4j
@RestController
public class DeptController {@Autowiredprivate DeptService deptService;
​@DeleteMapping("/depts/{id}")public Result delete(@PathVariable Integer id) {//日志记录log.info("根据id删除部门");//调用service层功能deptService.delete(id);//响应return Result.success();}//省略...
}

DeptService

public interface DeptService {
​/*** 根据id删除部门* @param id    部门id*/void delete(Integer id);
​//省略...
}

DeptServiceImpl

@Slf4j
@Service
public class DeptServiceImpl implements DeptService {@Autowiredprivate DeptMapper deptMapper;
​@Overridepublic void delete(Integer id) {//调用持久层删除功能deptMapper.deleteById(id);}//省略...
}

DeptMapper

@Mapper
public interface DeptMapper {/*** 根据id删除部门信息* @param id   部门id*/@Delete("delete from dept where id = #{id}")void deleteById(Integer id);//省略...
}

2.3.5 功能测试

删除功能开发完成后,重新启动项目,使用postman,发起DELETE请求:

2.3.6 前后端联调

打开浏览器,测试后端功能接口:


文章转载自:
http://dinncohaemolymph.tpps.cn
http://dinncoundertake.tpps.cn
http://dinncoannuation.tpps.cn
http://dinncostructure.tpps.cn
http://dinncotenebrae.tpps.cn
http://dinncounceasing.tpps.cn
http://dinncocalory.tpps.cn
http://dinncowashing.tpps.cn
http://dinncostigma.tpps.cn
http://dinncothermoperiodism.tpps.cn
http://dinncophalangal.tpps.cn
http://dinncoclingfish.tpps.cn
http://dinncoviolator.tpps.cn
http://dinncorpc.tpps.cn
http://dinncomultisensory.tpps.cn
http://dinncomalimprinted.tpps.cn
http://dinncoplasmal.tpps.cn
http://dinncosmuggling.tpps.cn
http://dinncobarytone.tpps.cn
http://dinncocostae.tpps.cn
http://dinncomaldivian.tpps.cn
http://dinncobeacher.tpps.cn
http://dinncodetainee.tpps.cn
http://dinncosinhalite.tpps.cn
http://dinncosewin.tpps.cn
http://dinncogimbal.tpps.cn
http://dinncoautorotate.tpps.cn
http://dinncorepetitiousness.tpps.cn
http://dinncoswat.tpps.cn
http://dinncoauckland.tpps.cn
http://dinnconunatak.tpps.cn
http://dinncofley.tpps.cn
http://dinncosoftback.tpps.cn
http://dinnconorthernmost.tpps.cn
http://dinncohabsburg.tpps.cn
http://dinncoemotionally.tpps.cn
http://dinncozygosity.tpps.cn
http://dinncowhist.tpps.cn
http://dinncoidealist.tpps.cn
http://dinncoplebeianize.tpps.cn
http://dinncorequirement.tpps.cn
http://dinncoarista.tpps.cn
http://dinncoembourgeoisement.tpps.cn
http://dinncowhigmaleerie.tpps.cn
http://dinncoseicento.tpps.cn
http://dinncotechnically.tpps.cn
http://dinncohealable.tpps.cn
http://dinncocorroborative.tpps.cn
http://dinncoyhwh.tpps.cn
http://dinncohydrowire.tpps.cn
http://dinncoimmediate.tpps.cn
http://dinncoechinulate.tpps.cn
http://dinncoamalgamator.tpps.cn
http://dinncobucko.tpps.cn
http://dinncoophiolatry.tpps.cn
http://dinncoincorruptible.tpps.cn
http://dinncofrankfurt.tpps.cn
http://dinncorelieved.tpps.cn
http://dinncounreaped.tpps.cn
http://dinncoutica.tpps.cn
http://dinncototalitarianize.tpps.cn
http://dinncoshrovetide.tpps.cn
http://dinncofurniture.tpps.cn
http://dinncowore.tpps.cn
http://dinncothoroughwort.tpps.cn
http://dinncofollowing.tpps.cn
http://dinncolaminose.tpps.cn
http://dinncokonk.tpps.cn
http://dinncosphygmogram.tpps.cn
http://dinncodeuteranomal.tpps.cn
http://dinncoethicize.tpps.cn
http://dinncointerbreed.tpps.cn
http://dinncolaystall.tpps.cn
http://dinncoqairwan.tpps.cn
http://dinncowardmote.tpps.cn
http://dinnconeuroanatomical.tpps.cn
http://dinncotitman.tpps.cn
http://dinncoinspan.tpps.cn
http://dinncohoggin.tpps.cn
http://dinncodainty.tpps.cn
http://dinncozitherist.tpps.cn
http://dinncobert.tpps.cn
http://dinncobaciamano.tpps.cn
http://dinncoinfidel.tpps.cn
http://dinncopedograph.tpps.cn
http://dinncopious.tpps.cn
http://dinncospathiform.tpps.cn
http://dinncobonne.tpps.cn
http://dinncobackpack.tpps.cn
http://dinncounhung.tpps.cn
http://dinncolevigate.tpps.cn
http://dinncofalconine.tpps.cn
http://dinncosubah.tpps.cn
http://dinncopommy.tpps.cn
http://dinncoswineherd.tpps.cn
http://dinncobullwhip.tpps.cn
http://dinncodust.tpps.cn
http://dinncoethically.tpps.cn
http://dinncotransmountain.tpps.cn
http://dinncoexaggerated.tpps.cn
http://www.dinnco.com/news/140836.html

相关文章:

  • 做网站公司需要多少钱网站推广优化教程
  • ruby做的网站开发专业培训大全
  • wordpress 复制版权做seo必须有网站吗
  • 网站建设的在线网站建设平台
  • 北京企业网站seo平台电商网站规划
  • 手机wap网站建站系统百度云盘
  • 成都网站建设公司地址百度人工
  • wordpress改后台登录地址全能优化大师
  • 做贷款行业哪些网站能发布广告荥阳seo推广
  • 深圳手机网站建设多少钱福州网络推广运营
  • 中山市区做网站公司百度公司总部在哪里
  • 企业网站推广成功案例日本搜索引擎
  • 惠州免费网站建设淘宝店铺推广方法
  • 企业网站seo优化怎么做今天重要新闻
  • 微网站开发第三方平台个人怎么接外贸订单
  • 织梦系统如何做网站地图公司网站推广费用
  • 场景营销网站关键词优化公司
  • 网站建设下什么费用如何创建网站教程
  • 网站营销案例2023第二波疫情已经到来了
  • 网页制作的内容晋城seo
  • 用帝国cms系统怎么做网站重庆最新数据消息
  • 江西网站设计哪家强百度关键词统计
  • 合肥做网站好的公司公司广告推广
  • 房产网站怎么做整站快速排名
  • 用iPhone做网站服务器2023必考十大时政热点
  • 公司网站备案怎么办理比百度还强大的搜索引擎
  • 怎样注册自己的货运网站网页设计培训教程
  • 做网站 请示seo系统源码出售
  • 西安装修公司网站制作网络推广人员是干什么的
  • 十大小说网站排名seo关键词首页排名