플러그인 그룹이 작고 사용하기 쉽습니다. 다음은 프론트 데스크에서 쿼리 조건을 제출하고 MSSQL
HTML 프론트엔드 코드
include_once("auth.php" );
코드는 다음과 같습니다.
include_once("auth.php") include_once("inc/ms_conn .php"); include_once("inc/comm_function.php") ; $PersonCode=$_POST["PersonCode"]; //프런트 엔드에서 전달된 매개변수$KQYM=$_POST[ "KQYM"];
$sqlstr="Exec dbo.HR_Prg_GetPersonYMKQ2 '$KQYM ','$PersonCode'";
$rs =mssqlquery($sqlstr); //mssql_query 메서드와 유사한 사용자 지정 mssql 메서드
$row = mssql_num_rows($rs); //총 행 수 가져오기
$result["total"] = $row;
$items =array()
while ($row = mssql_fetch_array($rs)){
foreach($row as $key= >$value){
//이것은 매우 중요합니다. PHP의 json_encode는 utf-8만 지원합니다. 그렇지 않으면 필드 값에 중국어 문자가 포함됩니다. null로 설정됩니다
$row[$key]=iconv('gb2312', 'UTF-8',$row[$key]) }
array_push($items, $row) }
$result["rows"] =$items;
echo json_encode($result )
?>
다음은 렌더링입니다