- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
此问题构建 off of this question I had earlier ...我有一个可以正常提交的 php 表单。我正在向其中添加“添加更多”功能,再次添加整个字段集。
//access changes
if ($reqtype=="accesschange"){
$subject="FORM: Request Access Change(s) To Exisiting Folder";
$note .="Full Path of folder to change access: $fullpath \n\n";
if($userpermissiongroup != ""){
$note .="User Permission Group to be changed: $userpermissiongroup \n";
}
if($addreadaccess != ""){
$note .="Additional users requiring read access: $addreadaccess \n";
}
if($addauthoraccess != ""){
$note .="Additional users requiring author access: $addauthoraccess \n";
}
if($removeaccess != ""){
$note .="Users to be removed from access: $removeaccess \n";
}
$note .="Data Steward, Program Manager, Project Lead, or Supervisor who can authorize access changes: $supervisor \n\n";
$note .="Phone number of approving official: $phoneapprover \n";
}
如果用户单击更多,则此 foreach 会遍历添加的字段:
$addQues = array(
"Full Path of folder to change access:",
"User Permission Group to be changed:",
"Additional users requiring read access:",
"Additional users requiring author access:",
"Users to be removed from access:",
"Data Steward, Program Manager, Project Lead, or Supervisor who can authorize access changes:",
"Phone number of approving official:",
);
foreach($_REQUEST['addfield'] as $k => $value) {
$note .= "$addQues[$k] $value";
}
它将采用第一个字段,即 php 添加的字段...然后通过 javascript 添加的第一个字段集(用户添加),但不会采用第二个或第三个...所以我的数据结束看起来像:
Full Path of folder to change access: t:\this-drive User Permission Group to be changed: dv group Additional users requiring read access: jfla Additional users requiring author access: azann Users to be removed from access: dlint Data Steward, Program Manager, Project Lead, or Supervisor who can authorize access changes: gpone Phone number of approving official: 888-888-7777
Full Path of folder to change access: o:\driveUser Permission Group to be changed: odrive groupAdditional users requiring read access: sjonesAdditional users requiring author access: pvalleUsers to be removed from access: kpowerData Steward, Program Manager, Project Lead, or Supervisor who can authorize access changes: bzellPhone number of approving official: 777-777-7777
i:\new i group urusa mmalone jjon yokis 888-999-555
u:\ u group phammer midnite bmarley gdead 777-444-2222
为什么 foreach 没有再次获取 addQues() ?
VAR_DUMP $_REQUEST
array(22) { ["name"]=> string(1) " " ["email"]=> string(14) "" ["add"]=> string(0) "" ["citystate"]=> string(4) ", " ["phone1"]=> string(0) "" ["phone2"]=> string(0) "" ["reqtype"]=> string(12) "accesschange" ["newpath"]=> string(0) "" ["usersaccess"]=> string(0) "" ["ryesaccess"]=> string(0) "" ["approvingofficer"]=> string(0) "" ["sphone"]=> string(0) "" ["comments"]=> string(0) "" ["fullpath"]=> string(14) "t:\this-drive" ["userpermissiongroup"]=> string(8) "dv" ["addreadaccess"]=> string(9) "jflat" ["addauthoraccess"]=> string(5) "bzat" ["removeaccess"]=> string(5) "dlit" ["supervisor"]=> string(6) "lnat" ["phoneapprover"]=> string(12) "888-888-7777" ["addfield"]=> array(21) { [0]=> string(9) "o:\drive" 1=> string(12) "odrive group" [2]=> string(6) "sjones" [3]=> string(6) "pvae" [4]=> string(7) "kpow" [5]=> string(8) "bdez" [6]=> string(12) "777-777-7777" [7]=> string(7) "i:\new" [8]=> string(7) "i group" [9]=> string(5) "urusa" [10]=> string(7) "mmalone" [11]=> string(4) "jjon" [12]=> string(5) "yokis" [13]=> string(11) "888-999-555" [14]=> string(4) "u:\" [15]=> string(7) "u group" [16]=> string(7) "phammer" [17]=> string(7) "midnite" [18]=> string(7) "bmarley" [19]=> string(5) "gdead" [20]=> string(12) "777-444-2222" } ["c_id"]=> string(0) "" }
我得到的信息的 var_dump 是: var_dumb($_REQUEST['addfield']
array(21) { [0]=> string(9) "o:\drive" 1=> string(12) "drive group" [2]=> string(6) "sjones" [3]=> string(6) "pval" [4]=> string(7) "kpow" [5]=> string(8) "bdezl" [6]=> string(12) "777-777-7777" [7]=> string(7) "i:\new" [8]=> string(7) "i group" [9]=> string(5) "urusa" [10]=> string(7) "mmalone" [11]=> string(4) "jjon" [12]=> string(5) "yokis" [13]=> string(11) "888-999-555" [14]=> string(4) "u:\" [15]=> string(7) "u group" [16]=> string(7) "phammer" [17]=> string(7) "midnite" [18]=> string(7) "bmarley" [19]=> string(5) "gdead" [20]=> string(12) "777-444-2222" }
最佳答案
如果我理解正确的话,您希望有一个表单,可以在其中填写有关文件权限请求的详细信息,并动态向同一表单添加更多请求。
您可能没有正确设置表单字段的名称。如果第一个和第二个字段集有效,但其他字段集无效,则表单中最初的字段集与动态添加的字段集具有不同的命名约定,并且动态添加的字段集相互冲突。
我建议您使用 Chrome 对其进行测试,并打开开发人员工具来查看由 Javascript 更新的页面的实时 HTML 代码。
您的最后一个问题的表单字段的命名如下:
<fieldset>
<input name="fullpath" (...) />
<input name="userpermissiongroup" (...) />
<input name="addreadaccess" (...) />
(...)
</fieldset>
如果您想要多个这样的字段集,则需要使用数组表示法,如上一个问题的答案中所指出的。
这可能有点棘手,除非您知道自己在做什么。如果你只是添加数组括号,就像这样;
<fieldset>
<input name="fullpath[]" (...) />
<input name="userpermissiongroup[]" (...) />
<input name="addreadaccess[]" (...) />
(...)
</fieldset>
<fieldset>
<input name="fullpath[]" (...) />
<input name="userpermissiongroup[]" (...) />
<input name="addreadaccess[]" (...) />
(...)
</fieldset>
...您的数据将被提交,但它们不会被很好地分组。最好将它们分组为对象;
<fieldset>
<input name="request[0][fullpath]" (...) />
<input name="request[0][userpermissiongroup]" (...) />
<input name="request[0][addreadaccess]" (...) />
(...)
</fieldset>
<fieldset>
<input name="request[1][fullpath]" (...) />
<input name="request[1][userpermissiongroup]" (...) />
<input name="request[1][addreadaccess]" (...) />
(...)
</fieldset>
这样,每个添加的请求数据都会很好地分组。此解决方案要求您在添加字段集的 JavaScript 中正确设置数字索引。
关于php - foreach 第二次没有获取数组数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10803677/
这是一个假设性问题。如果我有来自 3 个单独的 sql db 查询的 3 个数组,这些查询都与另一个数组相关。例如…… //db schools id | school_name classes id
在我的应用程序中,我使用 scrape(string url) 方法从网页中抓取链接。可以说它每次都返回我 10 个 url。 我想从每个抓取的 url 中抓取 10 个链接。 长话短说: (第 1
我的java7代码: final Map result = new HashMap<>(); final Set> classes = getClasses(co.glue()); for (fina
是否可以在 SwiftUI 中设置变量,例如在这样的 ForEach 中: struct ContentView: View { var test: Int var body: som
在 D、int、uint 中使用 foreach 时,循环索引的首选类型是什么?或者只是通过省略类型自动实现? 最佳答案 一般来说,索引应该是size_t。与长度相同。如果您尝试使用 int 或 ui
根据 http://dlang.org/statement.html 的“Foreach 限制”部分以下代码 int[] a; int[] b; foreach (int i; a) { a
在什么情况下我们应该在 JDK 8 中使用旧的 foreach 循环遍历新的 collection.forEach() 还是最好的做法是转换 every foreach 循环?是否存在任何重要的性能差
获得类似东西的惯用方法是什么? ((fn [coll] (function-body)) [:a :b :c :d]) -> [[:a :b][:a :c][:a :d][:b :c][:b :d][
我正在创建一个基于 who is it? 的 Java 应用程序。现在我正在制作一种方法,在回答问题时我需要其他卡片。 我有两个列表: 列表是一个 ImageView 列表,其中我有卡片必须代表的 2
我希望有人能在我发疯之前帮助我。 我有 3 张 table : Table A SELECT companypk, companyname, logo, msscope FROM global_com
我正在尝试将多个字符串添加到 C# 中的 MailAddress。 如果我使用ForEach,我的代码会是这样 foreach (var item in GetPeopleList()
我没有太多的 C# 经验,所以如果有人能指出正确的方向,我将不胜感激。我有一个引用对象变量的 foreach 循环。我希望在主循环中创建另一个 foreach 循环,将当前变量与对象数组中的其余变量进
下面的代码每 60 秒删除文件夹“Images”中的文件,它可以工作,但是当文件夹为空时它会显示:警告:为 foreach() 提供的参数无效如果没有文件,如何解决这个问题,说“文件夹为空而不是那个警
我需要在两种不同的模式下运行,因此“if”(第二个稍后构建一个大的 csv) 下面对于单个实例运行正常,但在第二个 (*) 的加载时间上失败,因为在前 7k 行中的每一行上运行。 我想避免可怕的事情
我们可以使用以下两种方法实现类数组对象的迭代: let arrayLike = document.getElementsByClassName('dummy'); [].forEach.call(ar
我有这个代码 ... 它说: Attribute value invalid for tag forEach according to TLD 最佳答案 forEach标签不支持 valu
我在 SwiftUI 中有一个像这样的 ForEach: ForEach(entries) { (e: MyType) in NavigationLinkItem(entry: e) } 现在我
我无法在一个 Foreach 或 Foreach-Object 循环中使用多个命令 我的情况是—— 我有很多文本文件,大约 100 个。 所以他们被阅读 Get-ChildItem $FilePath
我必须从 json 文件(实际上是 2 个 json 文件)执行 ForEach,因此我执行 2 forEach,代码是 table { font-family: arial, sans-
我对编程很陌生,当我执行 forEach 函数时,我的应用程序返回错误。我的controller.js中有以下代码 $scope.ajaxRequest = A.Game.get({action: '
我是一名优秀的程序员,十分优秀!