0

私はMVC4とEntityFrameworkを使用してイントラネットWebアプリケーションに取り組んでいます。開発当初から解決できない問題があります。私が言っていることを説明するために、ここに例があります:

「ビューの作成」を通じて人物を追加できます。このビューでは、人の家と職場の間の距離を表す10進数を正確にする必要があります。この段階では、すべて問題ありません。ただし、人物を編集して変更を保存したい場合、その数値は10進数として受け入れられません。

私は自分の問題について読み、web.configにタグを追加して、使用したいカルチャ(正確には、フランスのカルチャ)を正確にするなどのことを試しました。

これが私の「ビューの編集」です:

@model BuSIMaterial.Models.Person
@{
    ViewBag.Title = "Edit";
}
<h2>
    Edit</h2>
<script src="@Url.Content("~/Scripts/jQueryFixes.js")" type = "text/javascript"></script>
@using (Html.BeginForm())
{
    @Html.ValidationSummary(true)

    <fieldset>
        <legend>Person</legend>
        @Html.HiddenFor(model => model.Id_Person)
        <div class="editor-label">
            First name :
        </div>
        <div class="editor-field">
            @Html.TextBoxFor(model => model.FirstName, new { maxlength = 50 })
            @Html.ValidationMessageFor(model => model.FirstName)
        </div>
        <div class="editor-label">
            Last name :
        </div>
        <div class="editor-field">
            @Html.TextBoxFor(model => model.LastName, new { maxlength = 50 })
            @Html.ValidationMessageFor(model => model.LastName)
        </div>
        <div class="editor-label">
            National number :
        </div>
        <div class="editor-field">
            @Html.TextBoxFor(model => model.NumNat, new { maxlength = 11 })
            @Html.ValidationMessageFor(model => model.NumNat)
        </div>
        <div class="editor-label">
            Start date :
        </div>
        <div class="editor-field">
            @Html.TextBoxFor(model => model.StartDate, new { @class = "datepicker" })
            @Html.ValidationMessageFor(model => model.StartDate)
        </div>
        <div class="editor-label">
            End date :
        </div>
        <div class="editor-field">
            @Html.TextBoxFor(model => model.EndDate, new { @class = "datepicker" })
            @Html.ValidationMessageFor(model => model.EndDate)
        </div>
        <div class="editor-label">
            Distance House - Work (km) :
        </div>
        <div class="editor-field">
            @Html.EditorFor(model => model.HouseToWorkKilometers)
            @Html.ValidationMessageFor(model => model.HouseToWorkKilometers)
        </div>
        <div class="editor-label">
            Category :
        </div>
        <div class="editor-field">
            @Html.DropDownList("Id_ProductPackageCategory", "Choose one ...")
            @Html.ValidationMessageFor(model => model.Id_ProductPackageCategory) <a href="../ProductPackageCategory/Create">
                Add a new category?</a>
        </div>
        <div class="editor-label">
            Upgrade? :
        </div>
        <div class="editor-field">
            @Html.EditorFor(model => model.Upgrade)
            @Html.ValidationMessageFor(model => model.Upgrade)
        </div>
        <p>
            <input type="submit" value="Save" />
        </p>
    </fieldset>
}
<div>
    @Html.ActionLink("Back to List", "Index")
</div>

この問題を解決するためのアイデアはありますか?それは非常に迷惑であり、残念ながら、私はそれを解決する方法を見つけられませんでした。

編集:編集方法(個人コントローラー):

    public ActionResult Edit(long id = 0)
    {
        Person person = db.Persons.Single(p => p.Id_Person == id);
        if (person == null)
        {
            return HttpNotFound();
        }
        ViewBag.Id_ProductPackageCategory = new SelectList(db.ProductPackageCategories, "Id_ProductPackageCategory", "Name", person.Id_ProductPackageCategory);
        return View(person);
    }

    //
    // POST: /Person/Edit/5

    [HttpPost]
    public ActionResult Edit(Person person)
    {

        ViewBag.Id_ProductPackageCategory = new SelectList(db.ProductPackageCategories, "Id_ProductPackageCategory", "Name", person.Id_ProductPackageCategory);

        if (ModelState.IsValid)
        {
            ModelStateDictionary errorDictionary = Validator.isValid(person);

            if (errorDictionary.Count > 0)
            {
                ModelState.Merge(errorDictionary);
                return View(person);
            }

            db.Persons.Attach(person);
            db.ObjectStateManager.ChangeObjectState(person, EntityState.Modified);
            db.SaveChanges();
            return RedirectToAction("Index");
        }

        return View(person);
    }
4

1 に答える 1

0

控えめなJavaScriptの検証結果がサーバー側の結果と異なる場合、問題はMVC3jQueryの検証/数値のグローバル化/小数フィールドに関連している可能性があります。

同様の問題があり、このスレッドはそれを解決するのに役立ちました。

于 2013-03-26T10:29:29.227 に答える