欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Failed to load resource: the server responded with a status of 500 (Internal Server Error)

程序员文章站 2022-03-26 21:53:28
【原因】 因为这个表和另一个表是有一对多关系的,当序列化表1的时候,会找到和另一个表2关联的字段,就会到另一个表2中序列化,然后另一个表2中也有一个字段和表1相关联.这样.序列化就会发生这种错误! 【解决方案】 /注:这里值得注意的是,当有外键向关联时,必须要指定序列化元素,如果没有外键相关联,直接 ......

Failed to load resource: the server responded with a status of 500 (Internal Server Error)Failed to load resource: the server responded with a status of 500 (Internal Server Error)

【原因】

因为这个表和另一个表是有一对多关系的,当序列化表1的时候,会找到和另一个表2关联的字段,就会到另一个表2中序列化,然后另一个表2中也有一个字段和表1相关联.这样.序列化就会发生这种错误!

【解决方案】

/注:这里值得注意的是,当有外键向关联时,必须要指定序列化元素,如果没有外键相关联,直接序列化该实体对象
return json(new { ti.typename,ti.typevalue,ti.userid,ti.remark,ti.fullpath,ti.tyid,ti.isdisplay}, jsonrequestbehavior.allowget);

 

上一篇: OOP面向对象

下一篇: 理解 React Hooks