Zend Framework 2에서 경로, 게시, 가져 오기 등에 액세스하는 방법
zf2에서 페이지 요청과 관련된 다양한 매개 변수를 어떻게 얻을 수 있습니까? post / get 매개 변수와 마찬가지로 액세스되는 경로, 전송 된 헤더 및 업로드 된 파일.
가장 쉬운 방법 은 beta5에 도입 된 Params 플러그인 을 사용하는 것 입니다. 다양한 유형의 매개 변수에 쉽게 액세스 할 수있는 유틸리티 메소드가 있습니다. 항상 그렇듯이 테스트를 읽는 것은 어떤 것이 어떻게 사용되어야 하는지를 이해하는 데 유용 할 수 있습니다.
단일 값 얻기
컨트롤러에서 명명 된 매개 변수의 값을 얻으려면 찾고있는 매개 변수 유형에 적합한 방법을 선택하고 이름을 전달해야합니다.
예 :
$this->params()->fromPost('paramname'); // From POST
$this->params()->fromQuery('paramname'); // From GET
$this->params()->fromRoute('paramname'); // From RouteMatch
$this->params()->fromHeader('paramname'); // From header
$this->params()->fromFiles('paramname'); // From file being uploaded
기본값
이러한 모든 메서드는 지정된 이름의 매개 변수가없는 경우 반환되는 기본값도 지원합니다.
예:
$orderBy = $this->params()->fromQuery('orderby', 'name');
방문 할 때 http://example.com/?orderby=birthdate를 , $ 해 orderBy는 값이됩니다 생일을 .
방문 할 때 http://example.com/를 , $ 해 orderBy는 해야합니다 기본 값 이름을 .
모든 매개 변수 가져 오기
한 유형의 모든 매개 변수를 얻으려면 아무 것도 전달하지 마세요. 그러면 Params 플러그인이 이름을 키로 사용하여 값 배열을 반환합니다.
예:
$allGetValues = $this->params()->fromQuery(); // empty method call
http://example.com/?orderby=birthdate&filter=hasphone을 방문하면 $ allGetValues 는 다음과 같은 배열이됩니다.
array(
'orderby' => 'birthdate',
'filter' => 'hasphone',
);
Params 플러그인을 사용하지 않음
Params 플러그인 의 소스 코드 를 확인하면 보다 일관된 매개 변수 검색을 허용하기 위해 다른 컨트롤러를 둘러싼 얇은 래퍼라는 것을 알 수 있습니다. 어떤 이유로 든 직접 액세스하기를 원하거나 필요로하는 경우 소스 코드에서 어떻게 수행되는지 확인할 수 있습니다.
예:
$this->getRequest()->getRequest('name', 'default');
$this->getEvent()->getRouteMatch()->getParam('name', 'default');
참고 : 수퍼 글로벌 $ _GET, $ _POST 등을 사용할 수 있지만 권장하지 않습니다.
예를 들어, 게시 된 json 문자열을 얻는 가장 쉬운 방법은 'php : // input'의 내용을 읽고 디코딩하는 것입니다. 예를 들어 간단한 Zend 경로가 있습니다.
'save-json' => array(
'type' => 'Zend\Mvc\Router\Http\Segment',
'options' => array(
'route' => '/save-json/',
'defaults' => array(
'controller' => 'CDB\Controller\Index',
'action' => 'save-json',
),
),
),
Angular의 $ http.post를 사용하여 데이터를 게시하고 싶었습니다. 게시물은 괜찮 았지만 Zend의 검색 방법
$this->params()->fromPost('paramname');
didn't get anything in this case. So my solution was, after trying all kinds of methods like $_POST and the other methods stated above, to read from 'php://':
$content = file_get_contents('php://input');
print_r(json_decode($content));
I got my json array in the end. Hope this helps.
require_once 'lib/Zend/Loader/StandardAutoloader.php';
$loader = new Zend\Loader\StandardAutoloader(array('autoregister_zf' => true));
$loader->registerNamespace('Http\PhpEnvironment', 'lib/Zend/Http');
// Register with spl_autoload:
$loader->register();
$a = new Zend\Http\PhpEnvironment\Request();
print_r($a->getQuery()->get()); exit;
All the above methods will work fine if your content-type is "application/-www-form-urlencoded". But if your content-type is "application/json" then you will have to do the following:
$params = json_decode(file_get_contents('php://input'), true); print_r($params);
Reason : See #7 in https://www.toptal.com/php/10-most-common-mistakes-php-programmers-make
If You have no access to plugin for instance outside of controller You can get params from servicelocator like this
//from POST
$foo = $this->serviceLocator->get('request')->getPost('foo');
//from GET
$foo = $this->serviceLocator->get('request')->getQuery()->foo;
//from route
$foo = $this->serviceLocator->get('application')->getMvcEvent()->getRouteMatch()->getParam('foo');
'programing' 카테고리의 다른 글
자바 스크립트의 문자열에 문자 추가 (0) | 2020.08.23 |
---|---|
Google 캘린더에 추가 할 링크 (0) | 2020.08.23 |
오픈 소스 프로젝트에 대한 코드 서명 인증서? (0) | 2020.08.22 |
MacRoman, CP1252, Latin1, UTF-8 및 ASCII 간의 인코딩을 안정적으로 추측하는 방법 (0) | 2020.08.22 |
Ruby on Rails 대 ASP.NET MVC 3 for .NET Guy? (0) | 2020.08.22 |