
js
带头大哥
为了生存而斗争!
展开
-
vue history模式,刷新页面报404 解决方案
1.修改webpack.dev.conf.js publicPath 设置成 / 2.webpack.base.conf.js publicPath 设置成 / 3.package.json scripts -> dev 添加参数--history-api-fallback原创 2021-04-23 17:46:38 · 627 阅读 · 1 评论 -
Axios 请求统一追加参数
标题 位置:main.js 找到axios.interceptors.request.use(function (config) { } 方法快,在里面添加 axios.interceptors.request.use(function (config) { if(config.method === 'post'){ let data = config.data; config.data = JSON.stringify({ userid: "aaaaa", //追加的参原创 2021-01-31 11:36:15 · 2578 阅读 · 0 评论 -
jquery获取form提交的数据
js代码: $(function() { $('#submit').click(function() { var d = {}; var t = $('form').serializeArray(); $.each(t, function() { d[this.name] = this.value; }); al转载 2017-02-23 15:44:20 · 1295 阅读 · 0 评论