首页 > 代码库 > phalcon学习笔记之disable

phalcon学习笔记之disable

今天用Ajax 进行查询数据时  出现的问题

Ajax 调用后   一直走Error路线   利用Error捕捉错误

技术分享                    error: function(XMLHttpRequest, textStatus, errorThrown) {技术分享                        alert(XMLHttpRequest.status);技术分享                        alert(XMLHttpRequest.readyState);技术分享                        alert(textStatus);技术分享                    },
服务端返回值为标准Json
弹出
  Status 为200
  readyState 为 4
  textStatus parseerror

最后 console.log(data)后发现
在服务端返回值中 加载了pahlcon框架中的 View 头视图

 

phalcon学习笔记之disable