layui.upload上传文件的同时怎么传递一个参数

layui.upload上传文件的同时怎么传递一个参数,第1张

在 before 回调里面 执行追加 隐藏input的 *** 作,里面放你的参数 $('.layui-upload-file').after( '<input type="hidden" name="xxxx" value="xxxx" />' )

重点是这个parent,折磨了我一下午,原来是没有搞清应该从父页面打开。最开始的xadmin.add_tab()是用在左边菜单上的,点击就会增加新的标签页,这个才是父页面。

使用X-admin(Layui)前端框架,在打开新Tab页面内刷新其他Tab页面解决方案(表单数据多可以使用opend框全屏)

这个bug隐藏地非常深,我一开始写了新增合同页面,通过“下一步”的按钮跳转到添加合同条款的页面,结果可以跳转,合同编号也传递正确了,但是条款信息提交时却又返回到了上一页面。

因为某种机缘巧合而发现了原来是新增合同页面的form检查语句form.verify{}不让我提交……至于原因,可能是我把不该写的东西写在了form.verify{}里吧……改得太快,没注意具体原因。

layui 打开新页面,并传入参数

下面这篇也是差不多的道理,拼接url实现layer.open

layui+springboot+thymeleaf 动态传参

我的理解是如果不return false,传的参数会被页面自动刷新掉。

Layui form表单提交注意事项

如何在表单里面做上一步跟下一步

提交form表单后,页面的跳转和刷新问题

<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title>文件上传</title> <link rel="stylesheet" href="layui/css/layui.css"> <link rel="stylesheet" href="css/global.css"> </head> <body> <fieldset class="layui-elem-field layui-field-title" style="margin-top: 20px"> <legend>设定上传文件的格式</legend> </fieldset><input type="file" name="file" class="layui-upload-file"><input type="file" name="file1" lay-type="file" class="layui-upload-file"><input type="file" name="file1" lay-type="audio" class="layui-upload-file"><input type="file" name="file2" lay-type="video" class="layui-upload-file"><blockquote class="layui-elem-quote" style="margin-top: 20px">支持拖动文件上传</blockquote><fieldset class="layui-elem-field layui-field-title" style="margin-top: 50px"> <legend>演示上传</legend> </fieldset> <div class="site-demo-upload"> <img id="LAY_demo_upload" src="layui/images/tong.jpg"> <div class="site-demo-upbar"> <input type="file" name="file" class="layui-upload-file" id="test"> </div> </div><p style="margin-top: 20px">注:由于服务器资源有限,所以此处每次给你返回的是同一张图片</p><script src="layui/layui.js"></script> <script> layui.use('upload', function(){layui.upload({url: '' //上传接口,success: function(res){ //上传成功后的回调 console.log(res) } }) layui.upload({url: '/test/upload.json',elem: '#test' //指定原始元素,默认直接查找class="layui-upload-file",method: 'get' //上传接口的http类型,success: function(res){ LAY_demo_upload.src = res.url } }) }) </script> </body></html>


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/bake/11749886.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-18
下一篇 2023-05-18

发表评论

登录后才能评论

评论列表(0条)

保存