【发布时间】:2021-04-27 20:09:37
【问题描述】:
我的控制器中有一个 Viewbag。我想从jquery代码中看到它。可能吗? 我想检查客户的钱是否足以购买产品。如果他们没有足够的钱,我想向他们展示一个甜蜜的警报。有可能吗?如果可以,我该怎么做?
那是我的 [GET] 控制器;
public ActionResult inspect(string id, int page = 1)
{
if (id == null)
{
return RedirectToAction("account", "product");
}
ViewBag.href = id;
ViewBag.user = Session["MAIL"];
var valuehrefid = db.TBLPRODUCT.Where(x => x.href == id).Select(y => y.ID).FirstOrDefault();
var accounts = db.TBLACCOUNT.Where(x => x.PRODUCT == valuehrefid && x.status == true).ToList().ToPagedList(page, 10);
return View(accounts);
}
那是我的 [POST] 控制器;
public ActionResult buyaccount(int id)
{
var mail = (string)Session["MAIL"];
var userid = db.TBLUSER.Where(x => x.MAIL == mail).Select(y => y.ID).FirstOrDefault();
var price = db.TBLACCOUNT.Where(x => x.ID == id).Select(y => y.PRICE).FirstOrDefault();
var user = db.TBLUSER.Find(userid);
if (user == null || mail == null)
{
ViewBag.alert = "usernull";
return RedirectToAction("login", "home");
}
var href = db.TBLACCOUNT.Where(x => x.ID == id).Select(y => y.TBLPRODUCT.href).FirstOrDefault();
var customercash = user.CASH;
if (customercash >= price)
{
user.CASH -= price;
var value = db.TBLACCOUNT.Find(id);
value.status = false;
var product = db.TBLACCOUNT.Where(x => x.ID == id).Select(y => y.TBLPRODUCT.ID).FirstOrDefault();
var productd = db.TBLPRODUCT.Find(urun);
product.STOCK -= 1;
var date = DateTime.Parse(DateTime.Now.ToShortDateString());
TBLSALEACTION p = new TBLSALEACTION();
p.CUSTOMER = userid;
p.ACCOUNT = id;
p.PRODUCT = product;
p.DATE = date;
p.PRICE = price;
db.TBLSALEACTION.Add(p);
db.SaveChanges();
ViewBag.Uyari = "successful";
}
else
{
ViewBag.Uyari = "Customer's money is not enough to buy this.";
int sayfa = 1;
var valuehrefid = db.TBLPRODUCT.Where(x => x.href == href).Select(y => y.ID).FirstOrDefault();
var accounts = db.TBLACCOUNT.Where(x => x.PRODUCT == valuehrefid && x.status == true).ToList().ToPagedList(sayfa, 10);
return View("inspect", model: hesaplar);
}
return View("~/Views/accounts/inspect/" + href + ".cshtml", href);
}
这就是我的观点
@if (Session["MAIL"] != null)
{
<script>
$('#TBLACCOUNT').on("click", ".btnBuy", function () {
var btn = $(this);
Swal.fire({
title: 'Warning',
text: "Are you sure to buy this?",
type: 'warning',
showCancelButton: true,
confirmButtonColor: '#3085d6',
cancelButtonColor: '#d33',
confirmButtonText: 'Yes',
cancelButtonText: 'No'
}).then((result) => {
if (result.value) {
var id = btn.data("id");
$.ajax({
type: "POST",
url: "/accounts/buyaccount/" + id,
success: function (s) {
if (s) {
btn.parent().parent().remove();
Swal.fire(
'Information ',
'You have successfully purchased!',
'success'
);
} else {
Swal.fire({
type: 'error',
title: 'Error.',
text: 'You dont have enough money.',
confirmButtonText: 'Close'
});
}
}
});
}
});
});
</script>
}
【问题讨论】:
标签: c# jquery asp.net-mvc model-view-controller