extjs+php ,大家来看看是我的json输出的问题,还是我的extjs没有写对呢?

WBOY
풀어 주다: 2016-06-23 14:23:24
원래의
855명이 탐색했습니다.

客户端:主要是看我鞋底subm这个函数有没得问题,

var main=new Ext.FormPanel({	title:'用户注册',	width:500,	frame:true,	bodyStyle:'margin:10px;',	renderTo:'tool',	height:400,		items:[		{			layout:'column',			border:false,  			items:[				{	columnWidth:.4,					xtype:'textfield',					fieldLabel:'姓名',					labelWidth:30,					regex:/^[0-9a-zA-Z\.]+$/,					regexText:'只能是字母',					regexTextWidth:300,					allowBlank:false,					name:'name'									},{					columnWidth:0.6,					layout:'column',					bodyStyle:'margin-left:20px',					border:false,					items:[								{					columnWidth:.2,					xtype:'checkbox',					name:'aihao',					boxLabel:'足球',				},					{					columnWidth:.2,					xtype:'checkbox',					name:'aihao',					boxLabel:'踢足球'				}									]			}			]				}		],	buttons:[			{text:'保 存',			 handler:subm},			 {text:'取 消'}		]					})function subm(){	 	  if (!main.isValid()) {                 return;            }	    		main.getForm().submit({            	waitMsg:'数据提交中....',            	url:'./php.php',            	method:'POST',				params:main.getValues(),          	success:function(form,action){				alert("ok");            },                failure:function(form,action) {				alert('');            }        })				}
로그인 후 복사


服务端:
<?php$str=$_POST["name"];$arr=array("name"=>"xiobai","sex"=>"28");echo json_encode($arr);?>
로그인 후 복사


问题他直接走failure:后面的函数,为什么不走success:


回复讨论(解决方案)

你 alert(form + action);
而不要 alert('');

你 alert(form + action);
而不要 alert('');
显示出来是两个Obj.不知是怎么回事。

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿