使用 javascript、json 和 jquery 获取和设置客户端表单值
我正在使用 asp.net 中的 webforms 构建一个支持 ajax 的 UI。我真的希望这种互动非常轻松。我想做的是拨打电话来获取数据,然后将其绑定到我的表单客户端。
这是我的工作示例。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Untitled Page</title>
<script type="text/javascript" src="http://jqueryui.com/jquery-1.3.2.js"></script>
<style type="text/css">
body { font-family: Arial; font-size:10px; }
#formRow label { display:block;}
#formRow input { display:block; margin-bottom: 10px;}
</style>
<script type="text/javascript">
(function ($) {
$.formUtil = {
bind: function (row, entity) {
for (property in entity) {
//take the property name and put it together with the entity and eval it
var propertyValue = entity[property];
//take the property name and use it to build a selector to go find the input value in the form
//need a switch to be able to determine different element types
$(row).find('#' + property).val(propertyValue);
}
},
reverseBind: function (row, entity) {
for (property in entity) {
//Get the value from the target form element
entity[property] = $(row).find('#' + property).val();
alert(entity[property]);
}
}
};
})(jQuery);
//Create an object to fill the form in with
//This will not be needed once there is a web service call to get the object
function detailItem() {
this.name = "Widget 123";
this.description = "Some wonderful description";
this.category = "2";
}
//Define the detail object on a global scale so that later it can be used to set the values into in reverse bind
var detail = null;
$(document).ready(function () {
detail = new detailItem();
$.formUtil.bind('#formRow', detail); //Initial bind for page load
});
</script>
</head>
<body>
<div id="formRow">
<label>Name:</label>
<input type="text" id="name" /><!--Notice the id is he same as the field name in the object-->
<label>Description:</label>
<input type="text" id="description" /><!--Notice the id is he same as the field name in the object-->
<label>Category:</label>
<select id="category">
<option value="1">Apples</option>
<option value="2">Oranges</option>
<option value="3">Banannas</option>
</select>
<input type="button" onclick="$.formUtil.reverseBind($(this).parents('div').get(0), detail)" value="Get Data From Form" />
</div>
</body>
</html>
我的问题是:是否有更好的方法来做到这一点?因为 JSon 对象的属性都是变体类型,所以我应该如何最好地传达我正在使用的类型,以便如果我将数据绑定到选择,我可以评估正确的 jquery?
您对这段代码的总体感受如何?好的?坏的?
编辑:我用实体[属性]替换了 eval
编辑:使用的命名空间建议
编辑:更改了选择器,以便它可以与任何表单元素一起使用
I am building out an ajax enabled UI using webforms in asp.net. I really want this interaction to be extremely light. What I would like to do is make a call to get the data and then bind it to my form client side.
Here is my working example.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Untitled Page</title>
<script type="text/javascript" src="http://jqueryui.com/jquery-1.3.2.js"></script>
<style type="text/css">
body { font-family: Arial; font-size:10px; }
#formRow label { display:block;}
#formRow input { display:block; margin-bottom: 10px;}
</style>
<script type="text/javascript">
(function ($) {
$.formUtil = {
bind: function (row, entity) {
for (property in entity) {
//take the property name and put it together with the entity and eval it
var propertyValue = entity[property];
//take the property name and use it to build a selector to go find the input value in the form
//need a switch to be able to determine different element types
$(row).find('#' + property).val(propertyValue);
}
},
reverseBind: function (row, entity) {
for (property in entity) {
//Get the value from the target form element
entity[property] = $(row).find('#' + property).val();
alert(entity[property]);
}
}
};
})(jQuery);
//Create an object to fill the form in with
//This will not be needed once there is a web service call to get the object
function detailItem() {
this.name = "Widget 123";
this.description = "Some wonderful description";
this.category = "2";
}
//Define the detail object on a global scale so that later it can be used to set the values into in reverse bind
var detail = null;
$(document).ready(function () {
detail = new detailItem();
$.formUtil.bind('#formRow', detail); //Initial bind for page load
});
</script>
</head>
<body>
<div id="formRow">
<label>Name:</label>
<input type="text" id="name" /><!--Notice the id is he same as the field name in the object-->
<label>Description:</label>
<input type="text" id="description" /><!--Notice the id is he same as the field name in the object-->
<label>Category:</label>
<select id="category">
<option value="1">Apples</option>
<option value="2">Oranges</option>
<option value="3">Banannas</option>
</select>
<input type="button" onclick="$.formUtil.reverseBind($(this).parents('div').get(0), detail)" value="Get Data From Form" />
</div>
</body>
</html>
My question is: Is there a better way to do this already? Because the JSon object's properties are all variant type how should I best communicate what type I am working with so that if I am binding the data to a select I can eval the correct jquery?
What are your general feelings about this code? Good? Bad?
Edit: I replaced eval with entity[property]
Edit: Used namespace suggestion
Edit: Altered the selector so that it would work with any form element
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果是我,我会给你的函数命名,而不是让它们自由浮动:
If it were me i would namespace your function instead of haveing them free floating: