我正在开发 RESTful 应用程序——我在服务器端使用 Java,在前端使用 Backbone。2 将通过 JSON 进行通信。
我的应用程序有很多表格,我想:
- 将表单输入序列化为 JSON
- 将 JSON 发送到服务器
我的问题:
- 将表单输入序列化为 JSON 的最佳方法是什么?也许只有 Backbone 的解决方案?
- 一旦表单输入序列化为 JavaScript 对象 - 将 JSON 发送到服务器的最佳方式是什么?
到目前为止我的代码:
Javascript 和骨干网
$(function(){
$.fn.serializeObject = function()
{
var o = {};
var a = this.serializeArray();
$.each(a, function() {
if (o[this.name] !== undefined) {
if (!o[this.name].push) {
o[this.name] = [o[this.name]];
}
o[this.name].push(this.value || '');
} else {
o[this.name] = this.value || '';
}
});
return o;
};
//Model
var SignupForm = Backbone.Model.extend();
//View
var SignupView = Backbone.View.extend({
el: '.signupForm',
events: {
'click input.submit': 'getStatus'
},
getStatus: function(event){
var data = JSON.stringify($('form').serializeObject());
$('.test').html(data);
return false;
}
});
var signupForm = new SignupForm();
var signupView = new SignupView({
model: signupForm
});
});
HTML
<div class="signupForm">
<form class"signup">
<label for="name" >Name:</label>
<input type="text" id="name" name="name" />
<label for="surname" >Surname:</label>
<input type="text" id="surname" name="surname" />
<input type="submit" value="submit" class="submit" />
</form>
<div class="test"></div>
</div>
如果这是微不足道的,我是 Backbone 的新手,很抱歉。
我很想尽可能以最好的方式编写我的应用程序,所以请随时告诉我是否有更好的方法来做到这一点。
非常感谢。