gpt4 book ai didi

asp.net-mvc - AJAX Get 请求返回成功或错误,具体取决于从 Controller 接收到的对象

转载 作者:行者123 更新时间:2023-12-01 04:59:41 25 4
gpt4 key购买 nike

这是我的问题一步一步,

1-我从外部 javascript 文件中获取 ajax 请求,如下所示,

$.ajax({
type: "GET",
dataType: 'json',
url: '/Company/GetCompanies',
error: function (xhr, status, error) {
alert('error');
return false;
},
success: function (response) {
alert('success');
return false;
}
});

2 - 这是接收请求的操作方法

public ActionResult GetCompanies()
{
var model = new CompanyIndex();
model.FillCompanies();
return Json(model ,JsonRequestBehavior.AllowGet);
}

3 - CompanyIndex 是在上面的操作方法中创建的 ViewModel。

public class CompanyIndex
{
public IList<Company> Companies { get; set; }

public void FillCompanies()
{
/* Part that is not working */
UnitOfWork unitOfWork = new UnitOfWork();
Companies = unitOfWork.CompanyRepository
.Get(orderBy: q => q.OrderBy(u => u.CompanyName)).ToList();
unitOfWork.Dispose();
/****************************/

/* This works fine */
var companyList = unitOfWork.CompanyRepository
.Get(orderBy: q => q.OrderBy(u => u.CompanyName)).ToList();
Companies = companyList.Select(x => new { name = x.CompanyName }).ToList()
.Select(x => new Company
{
CompanyName = x.name

}).ToArray<Company>();
/********************/
}
}

正如您所看到的,我使用我的存储库和 Get 方法从数据库中获取公司实体,我也在下面共享了该方法。问题是当我从数据库中获取它们时,检索到的模型的类型是 System.Data.Entity.DynamicProxies.Company_someRandomStringHere 。在这种情况下,Ajax get 请求不会成功并发出错误消息警报。

但是,如果我首先从数据库获取并在 ViewModel 中创建 Company 对象并将它们分配给我的列表,则 ajax 工作正常,并且 ajax get 请求返回成功。当我在 ViewModel 中创建对象时,公司实体的类型应该是 CompanyManagement.Models.Company

以防万一您需要它,这是我用来从数据库获取数据的 Get 方法。

public virtual IEnumerable<TEntity> Get(
Expression<Func<TEntity, bool>> filter = null,
Func<IQueryable<TEntity>, IOrderedQueryable<TEntity>> orderBy = null,
string includeProperties = "")
{
IQueryable<TEntity> query = dbSet;

if (filter != null)
query = query.Where(filter);

foreach (var includeProperty in includeProperties.Split
(new char[] { ',' }, StringSplitOptions.RemoveEmptyEntries))
query = query.Include(includeProperty);

if (orderBy != null)
return orderBy(query).ToList();
else
return query.ToList();
}

我不想手动创建新的 Company 对象。任何想法都非常感激。提前致谢。

最佳答案

发现问题了。看来Ajax请求的响应需要可序列化。为此,我取消了动态代理,

context.ContextOptions.ProxyCreationEnabled = false;

因此,我的 Get 函数现在返回 CompanyManagement.Models.Company 实体,而不是 System.Data.Entity.DynamicProxies.Company

编辑:

使用 View 模型填充您的 View ,不要返回将业务逻辑保留在客户端的实体。这是不好的做法,并且在某些情况下很危险。

关于asp.net-mvc - AJAX Get 请求返回成功或错误,具体取决于从 Controller 接收到的对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11330296/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com