Как избежать обработки HTML вне шаблона для компонентов Joomla? - PullRequest
0 голосов
/ 23 мая 2018

Я создаю свой собственный компонент в Joomla 3.x У меня есть функциональный Ajax-вызов, подобный этому:

file.js

jQuery.ajax({
  type: 'post',
  data: 'topo_id=' + idTopo,
  url: 'index.php?option=com_mycomp&task=getMyData&format=json', 
  datatype: "json",
  success: function(res) {
    console.log(res);
    jQuery('#resultDiv').html(res.data);
},
error: function (e) {
  console.log(e);
}})

controller.php

function getMyData(){
  $mydataSQL = $MyClass->getMyData($param); // 
  $mydataHtml = $this->formatHtml($mydataSQL);  // to replace div content with ajax 
  echo new JResponseJson($mydataHtml); 
}
function formatHtml(MyClassFoo $foo) {
  $html ='<div id="foo">' . $foo->bar . '</div>';
  $html .= '<h1>' . $foo->foo .'</h1>';
  ...... and more html code here
  return $html
}

Я хотел бы использовать результат ($ myData = result PDO :: FETCH_CLASS) в представлении.($ mydataSQL-> name, $ mydataSQL-> address ...), чтобы избежать обработки html в функции контроллера.

Я безуспешно пытался выполнить такой вызов: ... & format = raw & view = newview.

1 Ответ

0 голосов
/ 29 мая 2018

Здесь вы хотите использовать макет.

https://docs.joomla.org/J3.x:Sharing_layouts_across_views_or_extensions_with_JLayout

в вашем контроллере

private function formatHtml(MyClassFoo $foo) 
{
   $layout      = new JLayoutFile('path.to.layout');
   $data = array('foo' => $foo);

   return $layout->render($data);
}

и в макетах / пути / к / макету.php (или шаблоны / # текущий шаблон # / html / layouts / path / to / layout.php)

<?php
defined('JPATH_BASE') or die;

$foo = $displayData['foo'];
?>
<div id="foo"><?= $foo->bar ?></div>
  <h1><?= $foo->foo ?></h1>
  <p>and more...</p>
</div>
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...