- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
ID
始终为 0,而不是其实际的 ID
display: none
并将隐藏字段值设置为 true
(此隐藏字段旨在让我知道哪个项目被删除迭代列表时)。但是当我提交表单时,javabean 列表中已删除的项目采用空值。那么我如何将隐藏元素映射到 javabean 对象,或者还有另一种方法来实现我的概念?
这是我的代码:
jsp:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<%@ taglib uri="/struts-tags" prefix="s" %>
<%@ taglib uri="/struts-dojo-tags" prefix="sx"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn"%>
<html>
<head>
<script language="javascript" src="js/jquery-1.9.1.min.js"></script>
<script language="javascript" src="js/common.js"></script>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Education List</title>
</head>
<body>
<s:form action="/save" method="POST">
<div class="educationForm">
<c:if test="${ (not empty educations) }">
<c:if test="${ fn:length(educations) ge 1 }">
<c:forEach items="${educations}" var="edu" varStatus="status">
<div class="educations">
<input type="hidden" name="education[${ status.index }].eduID" value="${ educations[status.index].index }" />
<label>Position</label><input type="text" name="educations[${ status.index }].index" value="${ educations[status.index].index }" /> <a href="" class="delete">Delete</a><br/>
<label>School</label><input type="text" name="educations[${ status.index }].school" value="${ educations[status.index ].school }" /><br/>
<label>Degree</label><input type="text" name="educations[${ status.index }].degree" value="${ educations[status.index ].degree }" /><br/>
<label>GPA</label><input type="text" name="educations[${ status.index }].scored" value="${ educations[status.index ].scored }" /><br/>
<label>Start Date</label><input type="text" name="educations[${ status.index }].startDate" value="${ educations[status.index].startDate }" /><br/>
<label>End Date</label><input type="text" name="educations[${ status.index }].endDate" value="${ educations[status.index].endDate }" /><br/>
<input type="hidden" name="educations[${ status.index }].deleted" value="${ educations[status.index].deleted }" />
</div>
</c:forEach>
</c:if>
</c:if>
<div class="educations">
<label>Position</label><input type="text" name="educations[${fn:length(educations)}].index" value="${fn:length(educations) + 1}" /><a href="" class="delete">Delete</a><br/>
<label>School</label><input type="text" name="educations[${fn:length(educations)}].school" /><br/>
<label>Degree</label><input type="text" name="educations[${fn:length(educations)}].degree" /><br/>
<label>GPA</label><input type="text" name="educations[${fn:length(educations)}].scored" /><br/>
<label>Start Date</label><input type="text" name="educations[${fn:length(educations)}].startDate" /><br/>
<label>End Date</label><input type="text" name="educations[${fn:length(educations)}].endDate" /><br/>
<input type="hidden" name="educations[${fn:length(educations)}].deleted" value="false" />
</div>
</div>
<a href="" id="addButton">Add new Edu</a>
<input type="submit" value="Save" />
</s:form>
<div class="template_educations" style="display:none">
<div class="educations">
<label>Position</label><input type="text" name="educations[_X_].index" value="_Y_" /><a href="" class="delete">Delete</a><br/>
<label>School</label><input type="text" name="educations[_X_].school" /><br/>
<label>Degree</label><input type="text" name="educations[_X_].degree" /><br/>
<label>GPA</label><input type="text" name="educations[_X_].scored" /><br/>
<label>Start Date</label><input type="text" name="educations[_X_].startDate" /><br/>
<label>End Date</label><input type="text" name="educations[_X_].endDate" /><br/>
<input type="hidden" name="ducations[_X_].deleted" value="false" />
</div>
</div>
</body>
</html>
jquery:
$(document).ready(function(){
//handle add new education
$("#addButton").click(function(event){
event.preventDefault();
//append html inside template_educations div into educationForm div
$(".educationForm").append($(".template_educations").html());
//loop through input tag inside educations div
$(".educationForm").children(".educations").last().children("input").each(function(){
var count = $(".educationForm").children(".educations").length;
//replace value of position textfield with current position
var value = $(this).attr("value");
if(typeof value !== 'undefined' && value !== false)
{
value = value.replace("_Y_", count);
$(this).attr("value", value);
}
//replace educations list index in textfield
var name = $(this).attr("name");
name = name.replace("_X_", count);
$(this).attr("name", name);
});
});
//handle delete education
$("body").on("click", ".delete", function(event){
event.preventDefault();
//hide all tag in education and set deleted to true
var parent = $(this).parents(".educations");
var hidden = parent.find("input[type=hidden]");
hidden.val("true");
parent.children().each(function(){
if($(this) !== hidden)
{
$(this).hide();
}
});
//display undelete button
parent.append("<a class='undelete' href=''>undelete</a>");
});
//handle undelete education
$("body").on("click", ".undelete", function(event){
event.preventDefault();
//unhide all tag in parent and set deleted to false
var parent = $(this).parents(".educations");
var hidden = parent.find("input[type=hidden]");
hidden.val("false");
parent.children().each(function(){
if($(this) !== hidden)
{
$(this).show();
}
});
//delete undelete button
$(this).remove();
});
});
行动:
package com.education.actions;
import java.util.List;
import org.apache.struts2.convention.annotation.Action;
import org.apache.struts2.convention.annotation.Result;
import org.apache.struts2.convention.annotation.Results;
import com.education.bean.Education;
import com.education.dao.DataConnectDao;
import com.opensymphony.xwork2.ActionSupport;
public class SaveEdu extends ActionSupport
{
/**
*
*/
private static final long serialVersionUID = 1L;
private List<Education> educations;
public List<Education> getEducations() {
return educations;
}
public void setEducations(List<Education> educations) {
this.educations = educations;
}
@Action(value="/save", results={
@Result(name="success", type="redirect", location="/list.action"),
@Result(name="input", type="redirect", location="/list.action")
})
public String execute()
{
DataConnectDao connect = new DataConnectDao();
connect.insertDetailDao(this.educations);
return SUCCESS;
}
}
JavaBean:
package com.education.bean;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
public class Education {
@GeneratedValue(strategy=GenerationType.AUTO)
private int eduID;
private String school;
private String degree;
private float scored;
private String startDate;
private String endDate;
private int index;
private boolean deleted;
public Education()
{
deleted = false;
}
public int getEduID() {
return eduID;
}
public void setEduID(int eduID) {
this.eduID = eduID;
}
public String getSchool() {
return school;
}
public void setSchool(String school) {
this.school = school;
}
public String getDegree() {
return degree;
}
public void setDegree(String degree) {
this.degree = degree;
}
public float getScored() {
return scored;
}
public void setScored(float scored) {
this.scored = scored;
}
public String getStartDate() {
return startDate;
}
public void setStartDate(String startDate) {
this.startDate = startDate;
}
public String getEndDate() {
return endDate;
}
public void setEndDate(String endDate) {
this.endDate = endDate;
}
public int getIndex() {
return index;
}
public void setIndex(int index) {
this.index = index;
}
public boolean isDeleted() {
return deleted;
}
public void setDeleted(boolean deleted) {
this.deleted = deleted;
}
}
插入数据:
package com.education.serivces;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import org.apache.log4j.Logger;
import org.hibernate.Query;
import org.hibernate.Session;
import org.hibernate.Transaction;
import com.education.bean.Education;
import com.education.utils.HibernateUltils;
public class DataConnect {
Session sess;
Transaction transaction;
List<Education> educations;
private Logger logger = Logger.getLogger(this.getClass());
public void inserEducation(List<Education> edu)
{
try
{
sess = HibernateUltils.getSession();
transaction = sess.beginTransaction();
for(Iterator<Education> educations = edu.iterator(); educations.hasNext();)
{
Education education = educations.next();
sess.saveOrUpdate(education);
}
transaction.commit();
}
catch (Exception e)
{
transaction.rollback();
logger.error(e);
}
finally
{
sess.close();
}
}
@SuppressWarnings({ "unchecked", "finally" })
public List<Education> getEducation()
{
try
{
sess = HibernateUltils.getSession();
sess.beginTransaction();
Query query = sess.createQuery("from Education");
this.educations = (List<Education>) query.list();
}
catch(Exception e)
{
logger.error(e);
}
finally
{
sess.close();
return educations;
}
}
}
最佳答案
我建议您在服务器端仅保留一个名为indexesToRemove 的单独字符串变量,并将其映射到jsp 中的一个隐藏值。它将删除已删除的 EduId 的值并用某个分隔符分隔。
例如:2-5-8 意味着 EduID 2、5 和 8 必须从列表中删除。现在,每次用户删除/取消删除时,您都可以使用 JS 代码修改它的值。
使用此字符串值,您可以根据需要处理提交时的列表或某些服务器端操作。
关于第一部分:我不知道隐藏值无法映射到 java bean 属性的任何限制。我猜你的问题是:
<input type="hidden" name="education[${ status.index }].eduID" value="${ educations[status.index].index }" />
为什么这不是:value="${ educations[status.index].eduID }"
?
关于java - 无法将隐藏项映射到 javabean struts2,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15875313/
两个学期前,我有一位教授说: Some of you have been told to always include setter and getter methods for all privat
我遇到了一些问题,我希望有人能知道我可以从哪里开始提出解决方案。我需要在程序执行期间动态创建 JavaBean 或 JavaBean 属性。我从数据库中检索列名,然后从特定表中选择这些值,并且我需要能
我想将大量 bean 的属性从一个 JavaBean 复制到另一个。我查看了 Apache Commons BeanUtils .但问题是它希望两个 bean 中的属性名称相同。无法提供映射。 例如在
我在设置一个属于另一个 bean 的 bean 并使其正确更新时遇到问题。更具体地说,我有: public class MyForm extends javax.swing.JFrame {
嘿那里!这只是一个一般性的询问.. 到目前为止,我有一个 servlet,它发送调度操作,许多 JSP 文件.. 但我的问题是 - 像 flickr 这样的典型 Web 应用程序有多少个 javabe
是否有一个实用程序可以创建一个 bean(它具有简单的 String 属性,其名称与 HashMap keys 匹配)给定 bean 类作为输入以及正确设置的 hashmap? 谢谢,阿米特 最佳答案
测试环境:netbeans7.11 + glassfish 3.11这是jsp,类代码: JSP Page
问题:哪些方法使用访问器和修改器的 JavaBeans 命名约定? 上面的代码是正确答案之一: public getNumWings() {return numberWings;} 我检查了 bean
问题 按照我的理解: “Bean” 是一个带有属性和getters/setter方法的Java类。它是不是和C的结构体是相似的呢,对吗?一个“Bean”类与普通的类相比是不是语法的不同呢?还是有特殊的
我不确定我是否正确地标记了这个问题。但我想做的是将 Javabean 映射为我拥有的输入。除了 Bean 包含一个我想要映射到的复杂类型属性(具体来说,我想映射到它的一个属性)。我用代码来解释一下。我
所以我正在做一个小人项目,但遇到了问题。我希望在页面加载时按字母顺序加载信息,但我不知道该怎么做,有什么建议吗?谢谢。这已从之前的内容更新。
有谁知道一个免费的开源库(实用程序类),它允许您比较一个 Java bean 的两个实例并返回一个属性列表/数组,这两个实例的值不同?请发布一个小样本。 干杯 托马斯 最佳答案 BeanCompara
在我的修订列表的 JavaBean 部分中,它声明我应该知道“属性和特性之间的区别”。我真的找不到两者之间的区别。我知道 JavaBeans 使用属性,而普通 Java 类使用属性(或者至少我被教导如
我对 JavaBeans 模式的憎恨就像一千个太阳的火焰一样燃烧。为什么? 冗长。现在是 2009 年。我不应该为一个属性写 7 LOC。如果他们有事件监听器,请捕获你的帽子。 没有类型安全的引用。没
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 我们不允许提问寻求书籍、工具、软件库等的推荐。您可以编辑问题,以便用事实和引用来回答。 关闭 7 年前。
我无法找出如何正确地将 JavaBean DS 传递到子子报表。我有以下 Java 代码: JRDataSource javaBeansKapitelDS = new JRBeanColle
我正在为我的桌面 Java 应用程序寻找重要的验证支持。 在JavaEE6中有一个新的validation model 。有没有办法在桌面应用程序中使用它? 最佳答案 我个人没有在纯Java SE环境
我是否应该在 javabean 中声明一个属性,该属性保存用户在 HTML 表单上键入的日期值(字符串或日期)? 我觉得我应该声明为日期,但是,因为我对所有表单数据进行服务器验证,如果日期不验证,当我
你知道我是否可以填充javabean,但我不想使用反射。 例如,我有这个 xml 模板来填充它 示例 XML 文件 public class Customer { private Strin
我有一个带有 date_observed 字段的 Javabean。现在我正在尝试创建一个表单,用户可以在其中搜索开始日期和结束日期之间的条目。 我是否应该创建另一个 Javabean 来扩展此 be
我是一名优秀的程序员,十分优秀!