Loading

上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 31 下一页
摘要: vue组件 说明 Vue.component():注册组件 my component li:自定义组件的名字 template:组件的模板 props属性传递参数:需要传递参数到组件上,所以就需要这个props属性 总结 第一步:编写new Vue对象 第二步:遍历message的数据 第三步:要遍 阅读全文
posted @ 2020-05-04 23:34 Rzk 阅读(114) 评论(0) 推荐(0) 编辑
摘要: 使用textarea {{message}} 使用radio 性别: 男 女 选中了谁: {{message}} 使用select下拉框 value: {{message}} 总结 1.通过双向绑定,得出需要用到 [^ textarea] 进行绑定 [^ texterea]:在文本区域插值 ({{t 阅读全文
posted @ 2020-05-04 17:56 Rzk 阅读(162) 评论(0) 推荐(0) 编辑
摘要: 从后台获取数据放在输入框中 function readCard() { $.ajax({ url:'/GetSlotCartServlet', type:'post', data: { "serchCardId":$(" serchCardId").val(), }, dataType:'json' 阅读全文
posted @ 2020-05-04 16:50 Rzk 阅读(4236) 评论(0) 推荐(0) 编辑
摘要: 比较运算符含义和示例 | 运算符 | 含义 | 示例 | | | | | | 等号(==) | 如果操作数相等,只返回true。如果两个操作数不是同一类型,JavaScript会将它们转化为。与第一个操作数相同的类型。 | 5 == var1 "5" == var1 5 == '5' | | 不等号 阅读全文
posted @ 2020-05-04 15:52 Rzk 阅读(184) 评论(0) 推荐(0) 编辑
摘要: on的事件 dJ():括号可加可不加,不影响 小栗子(一) <div id="app"> <input type="button" value="v-on指令" v-on:click="dJ()" /> <input type="button" value="v-on缩写" @click="dJ() 阅读全文
posted @ 2020-05-04 15:14 Rzk 阅读(128) 评论(0) 推荐(0) 编辑
摘要: 根据官方文档和视频进行学习 用 idea 进行开发导入js 新建HTML,在HTML输入以下代码 <script src="https://cdn.jsdelivr.net/npm/vue@2.5.21/dist/vue.min.js"></script> <div id="app"> {{mess 阅读全文
posted @ 2020-05-04 15:01 Rzk 阅读(236) 评论(0) 推荐(0) 编辑
摘要: 导入maven依赖 org.aspectj aspectjweaver 1.9.4 org.springframework spring aop 5.0.0.RELEASE compile 编写service接口 public interface UserService { void add(); 阅读全文
posted @ 2020-05-03 23:57 Rzk 阅读(184) 评论(0) 推荐(0) 编辑
摘要: 需要先移除 git remote rm origin 再使用 git remote add origin 你的地址 阅读全文
posted @ 2020-05-03 14:27 Rzk 阅读(178) 评论(0) 推荐(0) 编辑
摘要: 导入maven依赖 1 <dependencies> 2 <!--文件上传--> 3 <dependency> 4 <groupId>commons-fileupload</groupId> 5 <artifactId>commons-fileupload</artifactId> 6 <versi 阅读全文
posted @ 2020-05-02 22:55 Rzk 阅读(159) 评论(0) 推荐(0) 编辑
摘要: 先配置web.xml 1 <?xml version="1.0" encoding="UTF-8"?> 2 <web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee" 3 xmlns:xsi="http://www.w3.org/2001/XMLSchem 阅读全文
posted @ 2020-05-01 16:33 Rzk 阅读(167) 评论(0) 推荐(0) 编辑
上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 31 下一页