我正在开发 Joomla 3.6,我对 joomla 很陌生。我正在从 api 获取数据,我想将该数据传递给视图。我怎样才能做到这一点。
控制器:user.php
public function profile() {
$wskey = sdafsda;
$companycode = 'sdafsd';
$client = 1;
$cardno = 'sdafsd';
$pin = 'sdaf';
$wsdl = 'http://example/service.asmx?wsdl';
$getdata = array(
'WSKey' => $wskey,
'CompanyCode' => $companycode,
'CardNo' => $this->EncryptData($cardno),
'Client' => $client,
'PIN' => $this->EncryptData($pin),
);
$soapClient = new SoapClient($wsdl);
try {
$result = $soapClient->GetProfile($getdata);
} catch (Exception $e) {
return $e;
}
}
并且视图是在com_users->views->cprofile
.
我想在视图中显示这些数据,default.php
并且cprofile
想知道如何用数据调用视图。
抱歉可能不清楚。