私は、ゴルフコースとそのそれぞれの額面のデータベーステーブルを持っています。私はテーブルに新しいゴルフコースの行を追加しようとしています。テーブルには、3列のID
,CourseName
、およびPar
があります。C#/ MVC/Javascriptを使用してデータベースにレコードを追加します。
行を追加しようとすると、はIDフィールドなので、コードはCourseName
とPar
の値を設定します。
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();
}
}
}
}
CourseController
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; }
}
}
あなたの 'Course'クラスのソースも表示したいかもしれません... –
あなたの' GetCourse'メソッドは新しい要素の代わりに最初の要素を返さない –
名前で実際に何もしていないあなたのコードに同行 – Eonasdan