Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. 警告解决方案

有时候,浏览器加载网站,在控制台会出现 jquery.min.js:4 [Deprecation] Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end users experience. For more help, check https://xhr.spec.whatwg.org/. 的警告,原因是在某个js 脚本中,又额外动态引用了其他 js ...

Continue Reading »
分享到:

form表单中input为 number 类型的 value 值问题

如果一个表单中的输入框是数字类型,加载默认值一般采用 value=""0"", 但是有时候可能会出现无法显示的情况,经过仔细排查,可能是这样写的: <input type="number" min="0" max="10000" value=" 10 "> 或者: <input type="number" min="0" max="10000" value=" 10"> 再或者: <input type="number" min="0" max="10000" value="10 "> 总之,value赋值...

Continue Reading »
分享到:

dataTable 对数据排序遇到的小问题及解决方案

在使用jquery的dataTable库时,如果后台传过来的数据时 字符串型的 int 值,如下图所示: 如果使用排序功能的时候,会默认按照字符串处理,这样就会可能出现 4k 要大于 2M的情况,于是在这列数值前面加一个 隐藏数值,可以是int表示,也可以采用字符串形式,总之能够正确排序就可以了。 <td> <span class="hide">{{item.bytes|number_fill_format}}</span>{{ item.bytes|sizeformat }} </td> 例如我这里计算出...

Continue Reading »
分享到:

Flask + VUE 跳坑手册

因为Flask的前端有其优点,尤其是结合Flask_babel处理国际化支持i18N。就是在document里定义一个 app的元素,用于实例化VUE。不得不说,VUE的强大之处。第一次写VUE分页参考了 https://www.cnblogs.com/sebastian-tyd/p/7853109.html 的作品 <div id="app"> <div> <div class="page" v-show="show"> <div class="pagelist"> <span class="jump"...

Continue Reading »
分享到:

转载:一个VUE购物网站Demo

前言 demo预览: https://undercoverj.github.io/vogue/dist/index.html#/home demo下载: https://github.com/UNDERCOVERj/vogue/archive/master.zip 这篇文章是总结自己写项目时的思路,遇到的问题,和学到的东西,本文只截取一部分来讲,源码已奉上,觉得项目还行的点个赞吧,谢谢 一、搭建环境 安装vue-cli npm install -g vue-cli 创建webpack项目 vue init...

Continue Reading »
分享到: