我有一个正在测试的简单 ApiController:
namespace SMOnline.Controllers
{
public class DocumentosController : ApiController
{
Documentos[] docs = new Documentos[]
{
new Documentos { ID = 1, Tipo = 1, Designacao = "FC001"},
new Documentos { ID = 2, Tipo = 1, Designacao = "FC002"}
};
public IEnumerable<Documentos> GetAll()
{
return docs;
}
}
}
在客户端,我从不同的域调用它
$.ajax({
async: true,
type: 'GET', //GET or POST or PUT or DELETE verb
url: apiUrl + 'Documentos/', // Location of the service
dataType: 'jsonp', //Expected data format from server
})
.done(function (data) {
// On success, 'data' contains a list of documents.
$.each(data, function (key, item) {
alert(item.Designacao);
})
})
.fail(function (jqxhr, textStatus, error) {
alert(textStatus + " " + error);
});
我的问题是 JSONP 请求总是返回一个错误
parsererror 错误:未调用 jQuery20301899278084596997_1380125445432
我一直在寻找,但仍然没有找到解决方案。
编辑: 我忘了提到使用提琴手返回的值似乎正确的标题是 200 并且内容是 JSON 数组。