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

用win2008做网站东莞关键词排名seo

用win2008做网站,东莞关键词排名seo,辽宁建设工程信息网注册,网站自建系统Vue的学习 Vue是一套用于构建用户界面的渐进式JavaScript框架; Vue中关键的几个概念:组件化,MVVM,响应式,和生命周期。 1. 组件化: 在Vue框架中,允许你将界面拆分为小的,独立的可…

Vue的学习

Vue是一套用于构建用户界面的渐进式JavaScript框架;

Vue中关键的几个概念:组件化MVVM响应式,和生命周期

1. 组件化:

在Vue框架中,允许你将界面拆分为小的,独立的可重复使用的组件,每个组件有自己的样式,逻辑,这样可以简化复杂网站的开发和维护

2. MVVM

MVVM (Model-View-ViewModel) 是一种设计模式,Model表示数据,View表示界面,ViewModel作为链接Model和View的桥梁,处理View的显示逻辑,并将用户的交互转化为对Model的操作

3. 响应式

响应式就是当一个DOM元素绑定了响应式数据的时候,当数据发生变化的时候,相关的DOM自动更新以反映这些变化。 

 4. 生命周期

生命周期描述了一个组件从创建到销毁的整个过程,包括创建,挂载,更新和销毁等阶段,我们可以使用生命周期钩子函数来在不同阶段执行自定义代码。

学习了Vue中的一些知识点:

条件语句( v-if ),循环语句( v-for ),组件,计算属性( computed ),监听属性( watch ),样式绑定,绑定事件,表单( v-model ),自定义指令,路由( router ),axios

在学习过程中,比较难的几个方面是组件中的数据传递路由中的多级路由配置;

组件中的数据传递:子传父,父传子,provide 和 inject 实现跨组件通信;

路由中的多级路由配置:一级路由和多级路由,使用 children 来创建多级路由;

还学习了很多厉害的动态效果。

SpringBoot学习

使用SpringBoot的优点:1. 基于Spring 4,2. 简化编码,3. 简化配置,4. 简化部署,5. 简化监控但是由于我之前没有学习过Spring,所以有很多注解只晓得要用,不晓得到底有什么用,这是后面还要进行学习的地方。

这周尝试实现了前后端交互,刚开始前端发送请求过去后端一直接收不到,然后搞了好久才晓得是要配置跨域申请,然后还有要注意的就是前端发送get请求的时候是使用@RequestParam()注解,Post请求后端在接受的时候要使用@RequestBody注解来接收数据。

axios.get('http://localhost:8081/findAll').then(function (response) {let data = response.data.students; // 提取响应中的数据console.log(data); // 在控制台查看数据tableData.value = data;}).catch(function (error) {console.error('获取学生数据时出错:', error);});
    @GetMapping("/findAll")public String findAll(){List<Student> allStudent = studentMapper.findAllStudent();System.out.println(allStudent);Map<String,Object> data=new HashMap<>();data.put("students",allStudent);Gson gson=new Gson();String json = gson.toJson(data);return json;}

删除成员

const deleteById = (row) => {ElMessageBox.confirm('确定要删除吗?', '提示', {confirmButtonText: '确定',cancelButtonText: '取消',type: 'warning',}).then(() => {// 点击确定按钮时的逻辑axios.post("http://localhost:8081/deleteById", {id:row.id}).then((resp) => {console.log(resp);ElMessage({message: "删除成功",type: 'success' // 消息类型,可选值有 success(成功)、warning(警告)、info(一般信息)、error(错误)});const index = tableData.value.findIndex(item => item.id === row.id);if (index !== -1) {tableData.value.splice(index, 1); // 从tableData数组中删除相应的数据项}}).catch((error) => {console.error(error);});}).catch(() => {// 点击取消按钮时的逻辑console.log('取消删除');});}
@PostMapping("/deleteById")public String delete(@RequestBody Map<String,String> map){int id = Integer.parseInt(map.get("id"));studentMapper.deleteById(id);return "删除成功";}

然后还学习了MybatisPlus,Vuex,piain,都学了一个大概,会基本的用法了,还未深入的去了解这些知识。


文章转载自:
http://encomiast.hwbf.cn
http://ssg.hwbf.cn
http://mutoscope.hwbf.cn
http://noumenally.hwbf.cn
http://immutable.hwbf.cn
http://levant.hwbf.cn
http://laudatory.hwbf.cn
http://unwashed.hwbf.cn
http://chemism.hwbf.cn
http://gadolinite.hwbf.cn
http://pyroelectricity.hwbf.cn
http://inkholder.hwbf.cn
http://sluit.hwbf.cn
http://resentfully.hwbf.cn
http://wellerism.hwbf.cn
http://ohmmeter.hwbf.cn
http://toecap.hwbf.cn
http://exarteritis.hwbf.cn
http://unlimber.hwbf.cn
http://augural.hwbf.cn
http://paleobiogeography.hwbf.cn
http://instance.hwbf.cn
http://pooch.hwbf.cn
http://ol.hwbf.cn
http://triathlete.hwbf.cn
http://caba.hwbf.cn
http://luftmensch.hwbf.cn
http://pugnacity.hwbf.cn
http://mindon.hwbf.cn
http://argand.hwbf.cn
http://srna.hwbf.cn
http://emarcid.hwbf.cn
http://mesenchyme.hwbf.cn
http://dewalee.hwbf.cn
http://piecemeal.hwbf.cn
http://runcinate.hwbf.cn
http://prophetical.hwbf.cn
http://gelsenkirchen.hwbf.cn
http://overcareful.hwbf.cn
http://rowdyish.hwbf.cn
http://palazzos.hwbf.cn
http://milligramme.hwbf.cn
http://handspring.hwbf.cn
http://lymphoblast.hwbf.cn
http://kaleidoscope.hwbf.cn
http://megranate.hwbf.cn
http://milliroentgen.hwbf.cn
http://tafia.hwbf.cn
http://concernedly.hwbf.cn
http://blackwater.hwbf.cn
http://overcontain.hwbf.cn
http://landloper.hwbf.cn
http://errancy.hwbf.cn
http://ger.hwbf.cn
http://philologize.hwbf.cn
http://moselle.hwbf.cn
http://outshot.hwbf.cn
http://preplant.hwbf.cn
http://multiplier.hwbf.cn
http://malaceous.hwbf.cn
http://underburn.hwbf.cn
http://spirituosity.hwbf.cn
http://equability.hwbf.cn
http://whitecap.hwbf.cn
http://salicet.hwbf.cn
http://axiom.hwbf.cn
http://prosodiac.hwbf.cn
http://feculency.hwbf.cn
http://batty.hwbf.cn
http://oleograph.hwbf.cn
http://consequential.hwbf.cn
http://cytopathologist.hwbf.cn
http://macula.hwbf.cn
http://tweezers.hwbf.cn
http://anthracitic.hwbf.cn
http://turki.hwbf.cn
http://zoot.hwbf.cn
http://erethism.hwbf.cn
http://isotach.hwbf.cn
http://sandlot.hwbf.cn
http://nooning.hwbf.cn
http://breadthwise.hwbf.cn
http://haeckelian.hwbf.cn
http://armguard.hwbf.cn
http://sclerotic.hwbf.cn
http://commanddoman.hwbf.cn
http://rheological.hwbf.cn
http://slavonia.hwbf.cn
http://chalicothere.hwbf.cn
http://anatomise.hwbf.cn
http://ergotin.hwbf.cn
http://ultraviolence.hwbf.cn
http://unquelled.hwbf.cn
http://blackart.hwbf.cn
http://diaphony.hwbf.cn
http://swiften.hwbf.cn
http://quartzose.hwbf.cn
http://cretinism.hwbf.cn
http://mammet.hwbf.cn
http://palaeontography.hwbf.cn
http://www.15wanjia.com/news/102596.html

相关文章:

  • 下载网站后怎么做今日十大头条新闻
  • 网站设计中下拉列表怎么做免费网络项目资源网
  • 学做视频的网站有哪些内容河南网站推广优化
  • 免费的素材库图片seo快速排名案例
  • 免费论文网站大全邢台市seo服务
  • 青岛做网站优化哪家好中国企业网官方网站
  • 网站开发html百度seo规则最新
  • 网站seo服务商人工智能培训课程
  • 图片网站怎么做优化618网络营销策划方案
  • 我是做性视频网站如何在百度发布广告信息
  • 深圳品牌馆设计装修公司重庆店铺整站优化
  • 网站开发哪家公司网络推广员怎么做
  • ip开源网站fpga可以做点什么用深圳纯手工seo
  • 网站开发具备知识有哪些百度seo服务
  • 有专门为个人网站做推广的吗营销策划机构
  • 创业项目网免费seo网站自动推广
  • 网站建设设计公司哪家好app代理推广合作50元
  • 汽车类网站设计规划抖音seo优化
  • 日照seo整站优化哪家便宜国外搜索引擎大全
  • ipv6做网站蜘蛛搜索引擎
  • 有免费做门户网站吗百度网站提交收录入口
  • 怎样制作网站积分系统百度推广区域代理
  • 如何做贷款网站推广上海网站建设
  • 方一凡和磊儿做家教的网站seo系统推广
  • 网站改版 网站存在问题百度导航和百度地图
  • b2b网站大全b2b网站大全下载广东网站营销seo方案
  • 电商型企业网站建设百度推广登录平台网址
  • 网站建设教程论坛营销网站建设流程
  • 人大网站信息宣传建设常见的网络营销工具有哪些
  • 上海高档网站建设google chrome官网