zoukankan      html  css  js  c++  java
  • 使用jquery.form异步提交文件和其它参数

    html:

    				<form id="recovery-secret-key-modal-form" class="form-horizontal" action="">
    					<div class="modal-body">
    						<div class="form-group row">
    							<label
    								class="col-sm-3 col-md-3 col-lg-3 col-xl-3 control-label font-normal align-left modal-label-word">账号:</label>
    							<div class="col-sm-9 col-md-9 col-lg-9 col-xl-9">
    								<input class="form-control" type="text" placeholder=""
    									id="recovery-secret-key-modal-account" name="recoverySecretKeyModalAccount"
    									disabled />
    							</div>
    						</div>
    
    						<div class="form-group row">
    							<label
    								class="col-sm-3 col-md-3 col-lg-3 col-xl-3 control-label font-normal align-left modal-label-word">密钥文件:</label>
    							<div class="col-sm-9 col-md-9 col-lg-9 col-xl-9">
    								<div class="file-input-container">
    									<input class="form-control file-input" type="file" placeholder=""
    										id="recovery-secret-key-modal-file" name="updatePkg" />
    								</div>
    							</div>
    						</div>
    					</div>
    				</form>

    js:

    首先引入jquery.form-3.45.0.js文件。

    			$('#recovery-secret-key-modal-form').ajaxSubmit({
    				url: "/api/v1/kmj/keymng/import/",
    				type: "post",
    				data: {"uid": $("#recovery-secret-key-modal-account").val(), "usertype": "user"},
    				enctype: 'multipart/form-data',
    				// iframe: true,
    				dataType: 'json',
    				success(data) {
    					if (Number(data.status) === 0) {
    						toastr.success(data.msg, "成功提示");
    						$("#recovery-secret-key-modal").modal("hide");
    
    						let orgTreeObj = $.fn.zTree.getZTreeObj("org-tree");
    						let selectedNodes = orgTreeObj.getSelectedNodes();
    						getUserTableData(selectedNodes[0].did);
    					} else {
    						toastr.error(data.msg, "错误提示");
    					}
    				},
    				error(data) {
    					toastr.error("网络错误,恢复密钥失败!", "错误提示");
    				}
    			})

    以上代码在提交文件流的时候提交其它参数。

    选择文件后怎么清空file文件框的文件名?

    document.getElementById('recovery-secret-key-modal-file').value = "";
  • 相关阅读:
    %和format的区别
    C++ 使用 curl 进行 http 请求(GET、POST、Download)的封装
    C++ log4cplus 类库的封装
    linux top 命令
    python使用urllib2 http 下载参数的try catch
    C 小白的 thrift 环境搭建
    pandas 必背函数操作
    flask + MySQL-python 创建 webapp 应用
    python 的 virtualenv 环境搭建及 sublime 手动创建运行环境
    nginx proxy_pass指令’/’注意事项
  • 原文地址:https://www.cnblogs.com/samve/p/13227557.html
Copyright © 2011-2022 走看看