<code>var xx = 'dfdf'; var yy = 'kfdl'; var zz = 'ijklk'; instance:[{"instance_name":xx,"machine_belong":yy,"access_port":zz},{"instance_name":xx,"machine_belong":yy,"access_port":zz}] </code>
PHP 배경 처리 방법
인스턴스 = [{"instance_name":1,"machine_belong":2,"access_port":3},{"instance_name":1,"machine_belong":2,"access_port":3}];
이것을 테스트한 결과 json이 잘못 작성되었다는 것을 발견했습니다. 제 코드의 json이 서로 이어져 있는데, 이어붙이는 데 오류가 있었습니다
<code>var xx = 'dfdf'; var yy = 'kfdl'; var zz = 'ijklk'; instance:[{"instance_name":xx,"machine_belong":yy,"access_port":zz},{"instance_name":xx,"machine_belong":yy,"access_port":zz}] </code>
PHP 배경 처리 방법
인스턴스 = [{"instance_name":1,"machine_belong":2,"access_port":3},{"instance_name":1,"machine_belong":2,"access_port":3}];
이것을 테스트한 결과 json이 잘못 작성되었다는 것을 발견했습니다. 제 코드의 json이 서로 이어져 있는데, 이어붙이는 데 오류가 있었습니다
<code>instance = [{"instance_name":xx,"machine_belong":yy,"access_port":zz},{"instance_name":xx,"machine_belong":yy,"access_port":zz}] // 对instance json序列化, 才可以进行数据传输 instance = JSON.stringify(instance);</code>
PHP 구문 분석:
<code>$instance = json_decode($_REQUEST['instance'], true);</code>
아니요
객체를 먼저 문자열로 변환한 후 백그라운드로 보내야 합니다
코드를 보면 js가 PHP 인터페이스로 전송되나요?
그렇다면 post를 사용하기 위해 PHP는 $res=$_post['data']를 사용할 수 있습니다.
호출 인터페이스가 ajax({data:{...}});
다음이라면, php는 res.name
https://github.com/yiisoft/yi...
이 코드를 참고하세요
http://json.cn/ json 형식 테스트