이 글은 주로 PHP를 통해 데이터를 하이차트로 동적으로 전송하는 관련 지식을 소개합니다. 매우 좋은 참조 값을 가지고 있습니다.
1: 일상 업무에서 데이터를 표시할 때 배경에서 제공하는 인터페이스를 통해 json 문자열을 직접 가져와서 표시합니다. 오늘 누군가 요청한 동적 데이터를 로컬에서 시연하는 방법을 물었습니다.
2: 환경을 로컬로 설정하고 저는 WampServer를 사용합니다. 다운로드 주소: http://xiazai.jb51.net/201703/yuanma/WampServer_2.5_jb51.rar, 브라우저에서 localhost를 열면 파일은 다음과 같습니다. www 디렉토리의 wamp/
3에 저장됨: PHP 코드, 데이터베이스에 실시간 요청을 작성하는 프로세스가 없습니다.
<?php $b = array( array('name'=>'北京', 'y'=>20.2), array('name'=>'上海', 'y'=>9.6), array('name'=>'武汉', 'y'=>16.6), ); $data = json_encode($b); echo($data); ?>
4: html 파일
<!DOCTYPE HTML> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <link rel="icon" href="https://static.jianshukeji.com/hcode/images/favicon.ico"> <style> </style> <script src="https://img.hcharts.cn/jquery/jquery-1.8.3.min.js"></script> <script src="https://img.hcharts.cn/highcharts/highcharts.js"></script> <script src="https://img.hcharts.cn/highcharts/modules/exporting.js"></script> <script src="https://img.hcharts.cn/highcharts-plugins/highcharts-zh_CN.js"></script> </head> <body> <p id="container" style="min-width:400px;height:400px"></p> <script> $(function () { $.getJSON('http://localhost/index-1.php', function (csv) { console.log(csv) $('#container').highcharts({ chart: { plotBackgroundColor: null, plotBorderWidth: null, plotShadow: false }, title: { text: '' }, tooltip: { pointFormat: '{series.name}: <b>{point.percentage:.1f}%</b>' }, plotOptions: { pie: { allowPointSelect: true, cursor: 'pointer', dataLabels: { enabled: true, color: '#000000', connectorColor: '#000000', formatter: function() { return '<b>'+ this.point.name +'</b>: '+ this.percentage +' %'; } } } }, series: [{ type: 'line', name: '', data: csv, }] }); }); }); </script> </body> </html>
5: 여기에서 js 파일을 소개하세요. 동일한 json 문자열을 다른 그래픽으로 표시해야 할 경우 type 속성에서 시리즈를 수정하세요. , 동시에 highcharts의 데이터 열 매개변수plotOptions를 수정하면 다양한 그래픽을 표시할 수 있으며 highcharts는 그래픽 유형을 표시할 수 있습니다.
php는 다음 데이터 형식을 반환합니다: [{"name":"u5317u4eac","y":20.2},{"name":"u4e0au6d77","y":9.6},{"name":" u6b66u6c49","y":16.6}], 요청된 데이터를 처리해야 하는 경우, 예를 들어 데이터의 일부만 필요한 경우 get을 통해 데이터를 요청할 때 전달된 배열을 처리할 수 있습니다.
위 내용은 이 글의 전체 내용이며, 모든 분들의 공부에 도움이 되었으면 좋겠습니다.
관련 권장 사항:
PHP에서 바인드_param() 함수 사용 분석 Get , Post 인지 및 Ajax 제출 방법
위 내용은 PHP에서 하이차트로 데이터를 동적으로 전송하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!