我想知道如何将包含String的HashMap
和Action中的double值传递给javascript代码?
当我使用double值编辑某些字段时,我在这些字段上显示null,我该如何解决?
行动:
public String query() {
Service = new ServiceImpl();
v = new Vehicule();
v= Service.getByImmat(im);
map.put("kilo", v.getKilo()); //double value
/*SimpleDateFormat formatter5=new SimpleDateFormat("yyyy-MM-dd");
String formats1 = formatter5.format(ss1);*/
map.put("datepicker", formats1);
map.put("etat", v.getEtat());//string value
map.put("capacite_bagages", v.getCapacite_bagage()); //double value
return "success";
}
Ajax:
$.ajax({
type: 'POST',
url : "<s:url action='query'/>",
dataType : 'json',
data: { imm : selectedValue},
success: function(result) {
$.each(result, function(key,value){
$("#"+key).val(value);
});
});
编辑:
我想更新一些值(string,Date and double)
,因此我将这些参数从操作传递到jsp页面的map<String,object>
。
public String query() {
Service = new ServiceImpl();
v = new Vehicule();
v= Service.getByImmat(im);
map.put("kilo", v.getKilo()); //double value
SimpleDateFormat formatter5=new SimpleDateFormat("yyyy-MM-dd");
String formats1 = formatter5.format(v.getDate());
map.put("datepicker", formats1);
map.put("etat", v.getEtat());//string value
map.put("capacite_bagages", v.getCapacite_bagage()); //double value
return "success";
}
我在我的jsp中显示它,我在jsp页面中编辑它,但是当我想保存结果时,双值取一个NAN !! :
public String modifiervehicule () {
Service = new ServiceImpl();
v= new Vehicule();
v = vehiculeService.getVehiculeByImmat(immatricul);
v.setKilo((Double)getKilo());
v.setDate((Date)getDate());
v.setEtat(getEtat());
v.setCapacite_bagage((Double)getCapacite_bagages());
v = Service.update(v);
return "success";
}
kilo field(double)在编辑后有一个空值,但如果我用Integer值编辑它,它将没有空值,
我认为因为public double getkilo()
应该返回我在地图中传递的双重不对象!!)
编辑2:
jsp:
<script type="text/javascript">
$(document).ready(function()
{
$('#imm').change(function()
{
var selectedValue = $('#imm').val();
if ($.trim(selectedValue).length > 0)
{
$.ajax(
{
type: 'POST',
url : "<s:url action='query'/>",
dataType : 'json',
data: { imm : selectedValue},
success: function(result){
$.each(result, function(key,value)
{
$("#"+key).val(value);
} );
});
</script>
<s:form cssStyle="border:0;" validate="true" action="modifiervehicule" namespace="/" >
<s:select id="imm" label="immatriculation" list="immatriculs" name="immatricul"></s:select>
<s:textfield id="kilo" name="kil" label="kilometrage" size="15" ></s:textfield>
<s:textfield id="etat" name="etat" label="etat" size="15" ></s:textfield>
<s:textfield id="datepicker" name="date" label="date" size="15" ></s:textfield>
<s:textfield id="capacite_bagages" name="capacite_bagages" label="capacité de bagages" size="15"></s:textfield>
<s:submit style="height:30px; width:125px" name="Valider" value="Valider"></s:submit>
</s:form>
Struts.xml
<action name="query" class="action.Gestion" method="query">
<result name="success" type="json" >
<param name="root">map</param>
</result>
</action>
答案 0 :(得分:1)
使map
映射对象而不是字符串。例如
Map<String, Object> map= new HashMap<>();
现在你必须在其中放置对象,如果值为null
,它将保留success
处理程序返回JSON结果后可以获得的值。也可以看看
how to exclude properties with null
values from the JSON result。