我有一个使用多种类型的查询,如下所示:
//this is in my twig file
<script>
$('btn').click(function(){
$('#test').load("{{asset('getTable.php #list')}}");
});
我尝试使用和不使用
</script>
//in the getTable.php file
<table>
<thead>
<tr>
<th>Type</th>
<th>Nombre de Place Libre</th>
<th>Nombre de Place Exigé</th>
</tr>
</thead>
<tbody>
<?php
$bdd=new PDO('mysql:host=localhost;dbname=gestion_ressources_humaines', 'root','');
$reponse=$bdd->query('SELECT id, type, nbPlaceLibre, nbPlaceExige FROM fonction');
while ($donnees = $reponse->fetch())
{
?>
<tr>
<td style="display:none;"><?php echo $donnees['id']; ?></td>
<td><?php echo $donnees['type']; ?></td>
<td><?php echo $donnees['nbPlaceLibre']; ?></td>
<td><?php echo $donnees['nbPlaceExige']; ?></td>
</tr>
<?php
}
?>
</tbody>
</table>
<?php
$reponse->closeCursor(); // Termine le traitement de la requête
?>
<script>
$(function(){
$("tr").click(function(){
$('tr').removeClass('selected');
if($(this).hasClass('selected'))
$(this).removeClass('selected');
else
$(this).addClass('selected');
});
});
</script>
<p id="hello">Hello world!!!</p>
和DocumentHelper.GetDocuments()
.Type("Class1", q => q.Columns("Col1, Col2"))
.Type("Class2", q => q.Columns("Col1, Col2").Where("Col1", QueryOperator.Equals, true))
.Path(path, PathTypeEnum.Children)
.NestingLevel(1)
.Published(false)
.OrderByAscending("Col1")
.WithCoupledColumns();
(DocumentHelper无论如何都不需要),但无济于事,当我使用多种类型时,查询仅返回最新发布的版本。 / p>
答案 0 :(得分:0)
尝试添加.OnCurrentSite()
,看看它是否会改变结果。