
vue
Yang950831
这个作者很懒,什么都没留下…
展开
-
移动端选择时间时禁止软键盘弹出
今天在做移动端时 遇到了尴尬的问题 选择时间时 手机自带的软键盘将时间插件顶了上去 很别扭 因此在网上找了下我前端使的是element-ui前端: <el-date-picker v-model="ruleForm.date" @focus="forbid" type="date" placeholder="选择日期" style="width: 100%;"><...转载 2019-06-26 09:54:47 · 2790 阅读 · 1 评论 -
vue-resource 后台接收不到前台post方式传递的参数
今天前台使用vue-resource 做东西的时候 使用其 post的方式 后台Controller 获取不到参数。解决方式: 前台html:Vue.http.options.emulateJSON = true;this.$http.post('/f/test/findTestByPost',{id:this.ruleForm.id}).then(function(res...原创 2019-06-24 15:37:14 · 2212 阅读 · 0 评论 -
vue-axios post方式传参后台接收不到
之前写了下vue-resource post传参现在写下vue-axios post方式后台Controller接收不到参数的解决方法:前台:<!-- axios --><script src="https://unpkg.com/axios/dist/axios.min.js"></script><!-- qs--><s...原创 2019-06-24 16:42:12 · 1283 阅读 · 0 评论