当我单击按钮“保存”时,什么也没有发生,并且SaveProducts控制器中的断点没有响应。为什么?我知道需要实现jsondeserealize,因为product应该为null。

HomeController.cs

public class HomeController : Controller
{
    //
    // GET: /Home/

    public ActionResult Index()
    {
        return View();
    }

    public ActionResult SaveProducts(ProductModel product)
    {
        return View("Index");
    }

}


Index.cshtml

@{
ViewBag.Title = "Index";
}
<script src="~/Scripts/knockout-2.2.0.js"></script>
<h2>Index</h2>
<div data-bind="with: currentProduct">
<p>Name: <input type="text" data-bind="value: productName" /></p>
</div>
<input type="button" value="Save" data-bind="click: saveProduct" />

<script>

function ProductViewModel() {
    var self = this;
    self.currentProduct = ko.observable(new Product("P1"));
    self.saveProduct = function () {
        var productModel = ko.toJS(self.currentProduct);
        ko.utils.postJson("/Home/SaveProducts", {product: productModel} );
    }
}
function Product(name) {
    var self = this;
    self.productName = ko.observable(name);
}
ko.observable(new ProductViewModel());

</script>


ProductModel.cs

public class ProductModel
{
    public string productName { get; set; }
}

最佳答案

我无法在您的代码中看到您激活绑定的位置,并且我认为在这一部分中,您的意思是激活它而不创建可观察对象。

ko.observable(new ProductViewModel());


您应该将其更改为:

ko.applyBindings(new ProductViewModel());

关于javascript - asp.net将json发布到 Controller ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35444872/

10-12 05:08