毕业设计周报(第九周)通信工程1801班 陈港
一、本周完成的工作
1. 完成展示界面的视频按钮和删除按钮的设计。
- 通过使用angular-material中的Dialog组件,使在点击视频按钮和删除按钮时分别生成一个对话窗口。
效果图:
2. 完成前端对后端岩土样本数据库的get,post,patch,delete四种操作。
postshuju(api:any,body:any){
let url="http://localhost:8000";
const headers={
'content-type':'application/json'};
this.http.post(url+api,body,{
'headers':headers}).subscribe(response => {
console.log(response);
});
}
getshuju(api:any,body:any){
let