我正在尝试使用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
我可以知道原因和最佳解决方案。
答案 0 :(得分:0)
弄清楚自己。一个简单的错误是我没有插入值Id
列,它不能是NULL
,因为它是一个键。我将SQL表中Identity specification
列的Id
属性更改为是,并且它有效。