几个小时以来,我一直在寻找解决方案,但没有找到对我有用的解决方案。
这里我们使用逗号作为小数点分隔符,当我发送“ 15,50”之类的值时,在我的控制器中我得到的模型值为“ 1550”,只有当我发送“ 15.50”时才有意义“。
我讨论了以下主题,但没有任何效果。
Set CultureInfo in Asp.net Core to have a . as CurrencyDecimalSeparator instead of ,
Aspnet Core Decimal binding not working on non English Culture
我正在使用$form.serializeArray()
使用ajax发送表单,如下所示:
function getFormData(xform) {
var $form = $('#' + xform);
var unindexed_array = $form.serializeArray();
var indexed_array = {};
$.map(unindexed_array, function (n, i) {
indexed_array[n['name']] = n['value'];
});
return indexed_array;
}
发送:
function PostFormAjax(controller, metodo, params, redir, divacao, reloadgrid) {
if (params != null) {
var formData = new FormData();
var json = $.parseJSON(JSON.stringify(params));
$(json).each(function (i, val) {
$.each(val, function (k, v) {
console.log(k + " : " + v);
formData.append(k, v);
});
});
}
$.ajax({
url: '/' + controller + '/' + metodo,
data: JSON.stringify(params),
contentType: 'application/json',
type: 'POST',
success: function (data) {
AjaxFim(metodo, data, redir, divacao, reloadgrid);
}
});
}
我的控制器:
[HttpPost]
public IActionResult GravaProduto([FromBody] Produtos produto)
{
if (ModelState.IsValid)
{
//produto.Valorcusto is 1550 and not 15,50 as it was posted
//produto.Valorvenda is 1550 and not 15,50 as it was posted
}
}
我的Model.cs
public partial class Produtos
{
public int Cod { get; set; }
public string Descricao { get; set; }
public decimal Valorcusto { get; set; }
public decimal Valorvenda { get; set; }
}
我尝试在 formData.append(k, v.replace(',', '.'));
中进行替换,但也无法正常工作,我也不知道哪个字段是小数。
我该怎么办?因为迷路了,本来应该更简单的事情变得更加复杂。
在找到解决方案之前,我一直努力工作:
根据我的区域设置戴口罩:
$('.stValor').mask("#.###.##0,00", { reverse: true });
在发布表单之前,我切换到可接受的格式:
$('#fCadAltProd').validator().on('submit', function (e) {
if (e.isDefaultPrevented()) {
} else {
e.preventDefault();
$('.stValor').mask("#,###,##0.00", { reverse: true });
//Ajax post here
}
});
答案 0 :(得分:1)
这里我们使用逗号作为小数点分隔符,当我发送“ 15,50”之类的值时,在我的控制器中我得到的模型值为“ 1550”,只有当我发送“ 15.50”时才有意义“。
使用custom model binder创建一个the Norwegian culture,因为挪威也使用逗号十进制分隔符。您可能还需要指定某些multiple allowed number styles。
这是仍然需要进行错误处理的一种。不过,它为您提供了基本概念,您可以从此处开始。我要做的是从the built-in DecimalModelBinder
复制大部分逻辑。
using System.Globalization;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc.ModelBinding;
using Microsoft.AspNetCore.Mvc.ModelBinding.Binders;
using Microsoft.Extensions.Logging;
namespace AspNetCorePlayground.Models
{
public class MyFirstModelBinder : IModelBinder
{
public Task BindModelAsync(ModelBindingContext bindingContext)
{
var valueProviderResult = bindingContext
.ValueProvider
.GetValue(bindingContext.ModelName);
var cultureInfo = new CultureInfo("no"); // Norwegian
decimal.TryParse(
valueProviderResult.FirstValue,
// add more NumberStyles as necessary
NumberStyles.AllowDecimalPoint,
cultureInfo,
out var model);
bindingContext
.ModelState
.SetModelValue(bindingContext.ModelName, valueProviderResult);
bindingContext.Result = ModelBindingResult.Success(model);
return Task.CompletedTask;
}
}
}
然后像这样装饰您的班级:
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.ModelBinding.Binders;
namespace AspNetCorePlayground.Models
{
public class MyFirstModelBinderTest
{
[ModelBinder(BinderType = typeof(MyFirstModelBinder))]
public decimal SomeDecimal { get; set; }
}
}
我在控制器上对其进行了测试:
[HttpGet("test")]
public IActionResult TestMyFirstModelBinder(MyFirstModelBinderTest model)
{
return Json(model);
}
这是结果:
答案 1 :(得分:1)
使用此插件jquery.serializeToJSON 并将您的 getFormData()函数更改为
function getFormData(xform) {
var $form = $('#' + xform);
var obj = $form.serializeToJSON({
parseFloat: {
condition: ".stValor,.stQnt,.stDesconto",
nanToZero: true,
getInputValue: function (i) {
return i.val().split(".").join("").replace(",", ".");
}
}
});
return obj;
}
parseFloat.getInputValue:function(){},默认情况下,返回不带逗号的输入值,转换时不会发生错误。如果您所在的位置使用逗号进行小数点分隔(例如德语或巴西),则可以更改为
function(i){
return i.val().split(".").join("").replace(",", ".");
}
这将为您完成所有工作。