深入浅出Flask:ajaxSubmit函数的返回值
Posted caimouse
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了深入浅出Flask:ajaxSubmit函数的返回值相关的知识,希望对你有一定的参考价值。
在开发中使用ajaxSubmit与服务器交互的过程中,会发现一些问题,比如怎么样判断后端返回的数据类型,以及怎么样在前端里处理各种类型。
在前一文里介绍了表单验证,但是没有具体说明返回类型,在本文里进一步地补充这方面的介绍。先来看一下官方的说明:
function showResponse(responseText, statusText, xhr, $form) {
// for normal html responses, the first argument to the success callback
// is the XMLHttpRequest object\'s responseText property
// if the ajaxSubmit method was passed an Options Object with the dataType
// property set to \'xml\' then
以上是关于深入浅出Flask:ajaxSubmit函数的返回值的主要内容,如果未能解决你的问题,请参考以下文章