使用Asp.Net MVC中的Odata和Knockout Js向表中添加记录时的内部服务器错误(500)

时间:2014-04-09 13:44:12

标签: javascript sql asp.net-mvc knockout.js odata

我正在尝试使用Knockout Js和OData使用以下脚本将记录添加到SQL表中。

淘汰赛

self.Grade = ko.observable();
self.selectedProduct = ko.observable();

    self.add = function (grade) {
        var payload = { ProductName: this.selectedProduct(), GradeName:this.Grade(), Locked:false };
        $.ajax({
            url: '/odata/Grades',
            type: 'POST',
            data: JSON.stringify(payload),
            contentType: 'application/json',
            dataType: 'json'

        });

    }

HTML

<td >
     <select data-bind="options: $root.productNames, optionsText: 'ProductName', optionsValue: 'ProductName', value: selectedProduct, optionsCaption: 'Product'">
                </select></td>
          <td>
    <input type="text" id="txbInput" placeholder="Grade Name" data-bind="value: Grade"/> </td>
          <td>
    <input type="button", onclick="ClearFields();" class="btn btn-success" data-bind="    click: add, visible: !loading()", value="Add Grade"/></td>
      </tr>

但出于某种原因,当我点击Add Grade按钮添加记录时,它会给我一个例外情况,如下所示

Failed to load resource: the server responded with a status of 500 (Internal Server Error) http://localhost:57044/odata/Grades

我可以知道原因和最佳解决方案。

1 个答案:

答案 0 :(得分:0)

弄清楚自己。一个简单的错误是我没有插入值Id列,它不能是NULL,因为它是一个键。我将SQL表中Identity specification列的Id属性更改为是,并且它有效。

enter image description here