我在查找<{p>}中参数textStatus
所取的可能值时遇到问题
.done(function (data, textStatus) { \\[...] });
在jQuery文档中,done
没有单独的条目(至少我找不到)但是the jQuery Ajax documentation将我&#34;引用到deferred.done()以便实现细节&#34 ;.为deferred.done
提供的文档未列出参数textStatus
的可能值。
The jQuery Ajax documentation列出了textStatus
函数中参数complete
所采用的可能值:
(&#34;成功&#34;,&#34;未修改&#34;,&#34;错误&#34;,&#34;超时&#34;,&#34;中止&#34;,或&#34; parsererror&#34)
我的代码调用一个返回类型为void
的ASP.Net Web API方法。成功完成请求后,textStatus
中done
的值为"nocontent"
,这不是列出的可能值之一。
在哪里可以找到jQuery Ajax函数textStatus
中参数done
所采用的值的完整列表?