return new HttpStatusCodeResult(404, youtMessage);
请问下怎么获取错误序列号。
@一恋乘魔:
你的前端如何呼叫?
@RosonJ: <a href="SJSysDict.aspx?class=SysDictMgr&method=GetDictData¶m=<%="{'dict':{'id':'A10001','name':'人员字典'},where:'code >3600'}"%>">测试字典GetDictData</a>
请求,
处理完后,数据如下:
{ msg_no: 错误序列号, msg_text: '成功/失败', data: { id: '字典id', name: '字典名称', 'title: '字典标题', width: 600px, height: 543px, columns: [ { field: "Id", title: "ID", width: "110px", filter: 1 }, { field: "FirstName", title: "First Name", width: "130px", filter: 1 }, { field: "LastName", title: "Last Name", width: "130px" }, { field: "City", title: "City", width: "130px" } ] } }
@一恋乘魔:
HttpStatusCodeResult不會有Json的資料讓你取得,要取用Json物件就回傳Json吧
@RosonJ:
后台返回的是Json,
就是这段
data: { id: '字典id', name: '字典名称', 'title: '字典标题', width: 600px, height: 543px, columns: [ { field: "Id", title: "ID", width: "110px", filter: 1 }, { field: "FirstName", title: "First Name", width: "130px", filter: 1 }, { field: "LastName", title: "Last Name", width: "130px" }, { field: "City", title: "City", width: "130px" } ] }
而我要在这里面添加的是
msg_no: 错误序列号,
msg_text: '成功/失败',
所谓的错误码都是各自系统各自定义的.谁知道你们的系统里是怎么定义的.
你要问的不是如何返回.而是先去把错误码都定义好了.自然就有的返回了
哦知道了。谢谢了啊