我对使用服务堆栈后端的骨干集合提取的简单调用的标头有问题。
返回的响应看起来像一个 json,但只是一个原始字符串,主干不获取集合。
我注意到 fetch 调用总是导致错误,这很奇怪,因为同一 URL 的 curl 请求让我检查一切都很好,并且我恢复了 200 OK 代码。
编辑:添加了完整的回复
curl 的调用和接收到的输出
响应的标头
> GET /tickets?format=json HTTP/1.1
> User-Agent: curl/7.25.0 (i386-pc-win32) libcurl/7.25.0 zlib/1.2.5
> Host: 192.168.1.50
> Accept: */*
>
* HTTP 1.0, assume close after body
< HTTP/1.0 200 OK
< Date: Tue, 19 Jun 2012 13:09:35 GMT
< Server: Mono.WebServer.XSP/2.8.0.0 Win32NT
< X-AspNet-Version: 4.0.30319
< X-Powered-By: ServiceStack/3,69 Win32NT/.NET
< Set-Cookie: ss-id=URB3Ss34BE2FBliYDXEpBQ==; path=/
< Set-Cookie: ss-pid=HAfI68bmXU6jRdTiH0WEBA==; expires=Sat, 19-Jun-2032 13:06:26
GMT; path=/
< Cache-Control: private, no-cache="Set-Cookie"
< Content-Type: application/json; charset=utf-8
< Content-Length: 459
< Keep-Alive: timeout=15, max=100
* HTTP/1.0 connection set to keep alive!
< Connection: Keep-Alive
作为原始字符串接收的 json
[{"id":1,"urgencia":"Normal","fecha":"\/Date(-62135580600000- 0430)\/","ultimaActualizacion":"\/Date(-62135580600000-0430)\/","titulo":"Error 101","descripcion":"Al encender el equipo retorna error 101","status":"A","causas":[],"adjuntos":[],"operadores":[],"citas":[],"estados":[],"comentarios":[{"id":1,"fecha":"\/Date(-62135580600000-0430)\/","editado":"\/Date(-62135580600000-0430)\/","descripcion":"este es un comentario","status":" ","comentarios":[]}]}]
那么如何在服务堆栈中设置标头,以便骨干集合了解这是一个 json 响应?
更新:我想我已经找到了问题的根源,它与我的 Nhibernate 模型有关,因为我不能直接将它们用于 Rest 服务,任何其他模型都会解析为正确的类型。但我仍然不知道为什么。会看这个。
谢谢你的帮助。