我正在使用grails,在springource工具套件中,我遇到了更新SQL数据库的问题。在页面中,要求用户输入他的财产的详细信息,例如地址,城市等,一旦点击“保存”按钮,需要将详细信息保存在数据库中。现在我需要做的是,每次用户点击“添加”按钮时,动态地将输入字段(地址,城市等)添加到页面。因此,我需要使用AJAX将数据发布到服务器。但是,我无法更新它。这是视图的代码(.gsp文件) -
<head>
<script type="text/javascript">
var rad1, rad2, button1, button2;
function add() {
var newP = document.createElement("p");
var input1, input2,
area = document.getElementsByTagName("form")[0];
input1 = document.createElement("input");
input1.type = "text";
input1.placeholder = "street";
input1.id = "address";
newP.appendChild(input1);
input2 = document.createElement("input");
input2.type = "text";
input2.placeholder = "city";
input2.id = "city"
newP.appendChild(input2);
area.appendChild(newP);
}
</script>
</head>
<body>
<form name='prop' method="post" action="save">
<g:hiddenField name="owners.id" value="${session.user.id }" />
<input type="button" value="+Add" onclick= "add();" ><br>
<input type="button" name="create" id="save_button" class="save" value="save" />
</form>
<script type="text/javascript" src="ajax.js"></script>
</body>
这是我的Ajax代码在单独的ajax.js文件中的样子 -
$('#save_button').click(function() {
var street = $('#address').val();
var city = $('#city').val();
$.ajax({
type: "POST",
url: "${createLink(controller: 'property', action: 'save')}",
data: { address: street, city: city },
success: function(data) {
alert(data);
}
});
});
这是我的属性控制器中的代码(保存操作) -
def save = {
def propertyInstance = new Property(params)
if (propertyInstance.save(flush: true)) {
flash.message = "Property successfully added."
redirect(controller:"user", action: "show", id:params.owners.id)
}
else {
render(view: "create", model: [propertyInstance: propertyInstance, id:params.owners.id])
}
}
我在这里做错了什么?我对Ajax一点都不熟悉,如果这是一个明显的错误,那就很抱歉..请帮忙。
答案 0 :(得分:0)
$('#address').val();
和$('#city').val();
将为您提供jQuery找到的第一个#address
或#city
元素的值。如果你想制作一个数组来表示所有的地址和城市价值,你可以这样做:
var cities = [];
var addresses = [];
$('#address').each(function() {
addresses.push($(this).val());
});
$('#cities').each(function() {
cities.push($(this).val());
});
如果页面上有两个地址和城市输入,结果将如下所示:
console.log(addresses); // [address1, address2]
console.log(cities); // [city1, city2]
编辑:要重置提交时的字段(或者如果更改jQuery选择器,则“添加”),您可以这样做:
$('#save_button').click(function() {
// ... all your regular ajax stuff ...
// reset the fields
$('#address').val('');
$('#city').val('');
// ... and so on until you reset all fields
});