使用C#/MVC/Javascript将记录添加到数据库中
本文关键字:添加 数据库 记录 MVC Javascript 使用 | 更新日期: 2023-09-27 18:05:36
我有一个高尔夫球场及其各自面值的数据库表。我想在桌子上加一排新的高尔夫球场。该表有3列ID
、CourseName
和Par
。
当试图添加一行时,代码仅为CourseName
和Par
设置一个值,因为ID
是一个标识字段。
当我单击New Course
按钮时,行为是错误的——代码从表中获取第一行并编辑它,而不是创建新行。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using GolfScore.Data;
namespace GolfScore.Business
{
public class CourseManager
{
public static void AddCourse(string Name, int Par)
{
using (DBContext context = new DBContext())
{
Course j = context.Courses.Create();
context.Courses.Add(j);
context.SaveChanges();
}
}
public static void EditCourse(int? id, string Name, int Par)
{
using (DBContext context = new DBContext())
{
Course t = context.Courses.Where(c => c.CourseId == id).FirstOrDefault();
t.CourseName = Name;
t.Par = Par;
context.SaveChanges();
}
}
public static Course GetCourse(int? id)
{
if (id.HasValue) {
using (DBContext context = new DBContext())
{
return context.Courses.Where(c => c.CourseId == id.Value).FirstOrDefault();
}
}
else
{
using (DBContext context = new DBContext())
{
return context.Courses.FirstOrDefault();
}
}
}
public static IList<Course> GetAllCourses()
{
using(DBContext context = new DBContext())
{
return context.Courses.ToList();
}
}
}
}
课程控制器
using GolfScore.Business;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using GolfScore.Web.Models;
namespace GolfScore.Web.Controllers
{
public class CourseController : Controller
{
// GET: Course
public ActionResult Index()
{
return View(CourseManager.GetAllCourses());
}
[HttpGet]
public PartialViewResult AddEdit(int? id)
{
return PartialView("_AddEditCourse", CourseManager.GetCourse(id));
}
[HttpPost]
public JsonResult Save(Course c)
{
if (c.Id.HasValue)
{
CourseManager.EditCourse(c.Id, c.Name, c.Par);
}
else
{
CourseManager.AddCourse(c.Name, c.Par);
}
return Json(new
{
Success = true
});
}
}
}
Javascript
var Course = function (dialogSelector, addUrl, saveUrl) {
self = this;
self.dialogElement = dialogSelector;
self.addAJAXUrl = addUrl;
self.saveAJAXUrl = saveUrl;
self.dialog = null;
self.Initialize = function () {
self.dialog = $(self.dialogElement).dialog({
autoOpen: false,
height: 400,
width: 350,
modal: true,
buttons: [
{
text: "Save",
click: function () {
var jsonObject = {
"Id": parseInt($("#CourseId").val()),
"Name": $("#CourseName").val(),
"Par": parseInt($("#Par").val())
};
$.ajax({
url: self.saveAJAXUrl,
type: "POST",
contentType: "application/json",
dataType: "json",
data: JSON.stringify(jsonObject),
success: function () {
self.dialog.dialog("close");
location.reload();
},
error: function (a, b, c) {
alert("stupid");
}
})
}
},
{
text: "Cancel",
click: function (){
self.dialog.dialog("close");
}
}
],
close: function () {
self.dialog.dialog("close");
}
});
$(".newBtn").on("click", function () {
$.ajax({
url: self.addAJAXUrl,
type: "GET",
success: function (data) {
$(self.dialogElement).html(data);
self.dialog.dialog("option", "title", "New Course");
self.dialog.dialog("open");
},
error: function (a, b, c) {
alert("Error.");
}
})
});
$(".editBtn").on("click", function (e) {
$.ajax({
url: self.addAJAXUrl + "?Id=" + $(e.target).attr("data-course-id"),
type: "GET",
success: function (data) {
$(self.dialogElement).html(data);
self.dialog.dialog("option", "title", "Edit Course");
self.dialog.dialog("open");
},
error: function (a, b, c) {
alert("Error.");
}
})
});
};
}
如果你还需要什么,请告诉我。
提前谢谢。
对不起,这是课程课。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace GolfScore.Web.Models
{
[Serializable()]
public class Course
{
public int? Id { get; set; }
public string Name { get; set; }
public int Par { get; set; }
}
}
[HttpGet]
public PartialViewResult AddEdit(int? id)
{
return PartialView("_AddEditCourse", CourseManager.GetCourse(id));
}
这个动作你需要这样改变:
[HttpGet]
public PartialViewResult AddEdit(int? id)
{
if(id.HasValue)
return PartialView("_AddEditCourse", CourseManager.GetCourse(id));
return PartialView("_AddEditCourse",new Course())
}
如果id有值,则方法GetCourse必须仅返回Course。
在保存时,您需要检查id是否为0,因为如果是新记录,则id为0,否则id为>0。
编辑:
你获得课程的方法必须是这样的:
public static Course GetCourse(int id){
using (DBContext context = new DBContext())
{
return context.Courses.Find(id);
}
}
看看你为什么会出错,我需要你发布剃刀视图。