摘要:
<body> <div id="app"> <input type="text" v-model="num"/> <h1>{{name}},你真的强,有{{num}}个人为他点赞。</h1> </div> <script src="./node_modules/vue/dist/vue.js"></ 阅读全文
摘要:
重定向我们一般都是通过用这种方式;redirect必须是方法映射路径,jsp无效 return "redirect:/user/goLogin"; 重定向带参数的话,有两种写法; 第一种: attr.addAttribute("test1", "51gjie中");//跳转地址带上test1参数 获 阅读全文
摘要:
自定义拦截器类实现org.springframework.web.servlet.HandlerInterceptor 在applicationContext.xml添加拦截器配置 <!--拦截器配置--> <mvc:interceptors> <mvc:interceptor> <!--包含这个请 阅读全文
摘要:
1、在任意位置建一个空文件夹; 2、打开vscode,定位到刚才新建的文件夹; 点击左下角位置 弹出 3、输入npm install vue 展开刚才新建的项目 4、测试一下项目是否搭建成功; 新建一个index.html; 输入感叹号,直接回车; 就生成了html模板 新建一个vue小demo; 阅读全文