2021年12月21日

Vue笔记6.2 : Ajax (基于vue-resource)

摘要: Vue可以使用vue-resource实现ajax的操作 , 需要额外库 Vue.js 2.0 版本推荐使用 axios 来完成 ajax 请求 引用库 : <script src="https://cdn.staticfile.org/vue-resource/1.5.1/vue-resource 阅读全文

posted @ 2021-12-21 10:20 hi-gdl 阅读(30) 评论(0) 推荐(0) 编辑

Vue笔记6.1 :Ajax (基于axios)

摘要: Vue可以使用axios实现ajax的操作 参考: https://www.runoob.com/vue2/vuejs-ajax-axios.html Github开源地址: https://github.com/axios/axios npm install axios 或引用下面其中一个库路径 阅读全文

posted @ 2021-12-21 09:55 hi-gdl 阅读(42) 评论(0) 推荐(0) 编辑

Vue笔记5 : 混入

摘要: 菜鸟教程说 : 混入 (mixins)定义了一部分可复用的方法或者计算属性。混入对象可以包含任意组件选项。当组件使用混入对象时,所有混入对象的选项将被混入该组件本身的选项 . 其实就是vue和对象的合并 (合并实例中的方法 , 合并实例中methods中的方法 , 合并全局方法) 示例1 : 简单的 阅读全文

posted @ 2021-12-21 09:26 hi-gdl 阅读(45) 评论(0) 推荐(0) 编辑

Vue笔记4 : 路由

摘要: 官网 : https://router.vuejs.org/zh/installation.html (推荐看一下) Vue路由需要引用js库 : cdn : https://unpkg.com/vue-router/dist/vue-router.js npm : cnpm install vue 阅读全文

posted @ 2021-12-21 09:14 hi-gdl 阅读(32) 评论(0) 推荐(0) 编辑

Vue笔记3 : 动画和过度

摘要: Vue动画和过度 语法: <transition name = "nameoftransition"> <div></div> </transition> <style> /* 可以设置不同的进入和离开动画 */ .fade-enter-active, .fade-leave-active {tra 阅读全文

posted @ 2021-12-21 09:05 hi-gdl 阅读(32) 评论(0) 推荐(0) 编辑

2021年12月16日

Vue笔记2

摘要: <!-- 计算属性 computed https://www.runoob.com/vue2/vue-computed.html --> <div id="app"> <p>原始字符串: {{ message }}</p> <!-- 获取计算后的属性(用于复杂逻辑) --> <p>computed计 阅读全文

posted @ 2021-12-16 19:00 hi-gdl 阅读(23) 评论(0) 推荐(0) 编辑

Vue笔记1.2

摘要: <!-- v-bind:class v-bind:style 样式绑定参考 https://www.runoob.com/vue2/vue-class-style.html --> <! > <div id="app"> <button v-on:click="counter += 1">增加 1< 阅读全文

posted @ 2021-12-16 18:58 hi-gdl 阅读(24) 评论(0) 推荐(0) 编辑

Vue笔记1.1 : 开始

摘要: <!-- Vue.js demo https://www.runoob.com/vue2/vue-tutorial.html --> <div id="vue_det"> <p>{{ message }}</p> <p>{{details()}}</p> <!--双大括号支持js计算 --> <p> 阅读全文

posted @ 2021-12-16 18:57 hi-gdl 阅读(15) 评论(0) 推荐(0) 编辑

2021年12月15日

npm启动

摘要: npm install npm run dev 阅读全文

posted @ 2021-12-15 09:28 hi-gdl 阅读(213) 评论(0) 推荐(0) 编辑

2021年12月7日

PropertyReferenceException 关于JPA的findBy

摘要: 报错 : Caused by: org.springframework.data.mapping.PropertyReferenceException: No property name found for type ... ... 解决 : User findByRoleId(String id) 阅读全文

posted @ 2021-12-07 17:06 hi-gdl 阅读(109) 评论(0) 推荐(0) 编辑

导航