Knockout.js:时间输入格式和值限制
当我使用knockout将视图模型中的数字数据绑定时,它会正确显示,但如果用户更改输入标记值,则会将数据类型更改为字符串。 提交字符串的问题是,服务器需要一个没有隐式转换的数字值。
任何方式来告诉基诺维护原始属性值的数据类型?
我的示例代码将视图模型名称与输入标签名称相匹配。 我使用不显眼的淘汰赛做绑定,这工作正常。
// Bind the first object returned to the first view model object
// FNS is the namespace, VM is the view model
FNS.VM.Items[0] = ko.mapping.fromJS(data.Items[0]);
// For each property found, find the matching input and bind it
$.each(FNS.VM.Items[0], function (indexInArray, valueOfElement) {
var attrName = indexInArray;
var attrValue;
if (typeof valueOfElement == "function")
attrValue = valueOfElement();
else
attrValue = valueOfElement;
var a = $('input[name="' + attrName + '"][type="checkbox"]');
if (a.length)
a.dataBind({ checked: 'VM.Items[0].' + attrName });
var b = $('input[name="' + attrName + '"][type="radio"]');
if (b.length)
b.dataBind({ checked: 'VM.Items[0].' + attrName });
var c = $('input[name="' + attrName + '"][type="text"]');
if (c.length)
c.dataBind({ value: 'VM.Items[0].' + attrName });
});
ko.applyBindings(FNS);
以下是使用几种不同技术保持值数值的主题:https://groups.google.com/d/topic/knockoutjs/SPrzcgddoY4/discussion
一种选择是将这个问题推送到你的视图模型中,并创建一个numericObservable
来代替普通的observable。 它可能看起来像:
ko.numericObservable = function(initialValue) {
var _actual = ko.observable(initialValue);
var result = ko.dependentObservable({
read: function() {
return _actual();
},
write: function(newValue) {
var parsedValue = parseFloat(newValue);
_actual(isNaN(parsedValue) ? newValue : parsedValue);
}
});
return result;
};
示例:http://jsfiddle.net/rniemeyer/RJbdS/
另一个选择是用自定义绑定来处理这个问题。 您可以定义numericValue
绑定,而不是使用value
绑定,而是使用它。 它可能看起来像:
ko.bindingHandlers.numericValue = {
init : function(element, valueAccessor, allBindings, data, context) {
var interceptor = ko.computed({
read: function() {
return ko.unwrap(valueAccessor());
},
write: function(value) {
if (!isNaN(value)) {
valueAccessor()(parseFloat(value));
}
},
disposeWhenNodeIsRemoved: element
});
ko.applyBindingsToNode(element, { value: interceptor }, context);
}
};
示例:http://jsfiddle.net/rniemeyer/wtZ9X/
链接地址: http://www.djcxy.com/p/83809.html上一篇: Knockout.js: time input format and value restriction
下一篇: jQuery UI datepicker change event not caught by KnockoutJS