Symfony 和 Zend Lucene 高亮

发布于 2024-11-01 16:55:29 字数 773 浏览 0 评论 0原文

我使用 symfony 1.4 并使用 Zend Lucene 搜索,如 Jobbet< /a> 我需要突出显示搜索结果,我读了 这个 ,但我不明白它在我的情况下如何使用 symfony(

$ highlightedHTML = $ query-> highlightMatches ($sourceHTML);

什么是 $sourceHTML?这一切都是由一行组成的吗?

upd:

 $ highlightedHTML = $ query-> highlightMatches ($sourceHTML);

它在我的模型中工作,但它是如何工作的实施在我的 看法?

I use symfony 1.4 and I use Zend Lucene search like in Jobbet And I need to make Search Results Highlighting, I read this , but I do not understend how it make in my case with symfony(

$ highlightedHTML = $ query-> highlightMatches ($sourceHTML);

What is $sourceHTML? And is it all makes by only one row?

upd:

 $ highlightedHTML = $ query-> highlightMatches ($sourceHTML);

It works in my model, but how it implement in my view?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

七月上 2024-11-08 16:55:29

我现在不知道,如果它是正确的,但它是工作:)
就在眼前:

$query = Zend_Search_Lucene_Search_QueryParser::parse($queryStr);
$highlightedHTML = $query->highlightMatches($sourceHTML);

以我为例:

echo $query->highlightMatches($ad->getCompany())

I do not now , if it is right , but it is work :)
Just in view:

$query = Zend_Search_Lucene_Search_QueryParser::parse($queryStr);
$highlightedHTML = $query->highlightMatches($sourceHTML);

In my case for example:

echo $query->highlightMatches($ad->getCompany())
幸福%小乖 2024-11-08 16:55:29

您需要将这个突出显示的 HTML 存储在您的模型中。或者创建一个可从视图访问的函数。例如:

<?php
class Model {
  private $content;

  public function getContent(){
    return $this->content;
  }

  public function getContentHighlighted(){
    // Search term, usually in $_GET or $_POST
    $term = $_GET['searchterm'];
    // Parse query
    $query = Zend_Search_Lucene_Search_QueryParser::parse($term);
    // Return highlighted
    return $query->highlightMatches($this->getContent());
  }

}
?>

在您看来(例如本例中:Twig)您使用:

<h1>The content</h1>
{{model.getContentHighlighted}}

You need to store this highlighted HTML in your model. Or make a function that is accessible from the view. For example:

<?php
class Model {
  private $content;

  public function getContent(){
    return $this->content;
  }

  public function getContentHighlighted(){
    // Search term, usually in $_GET or $_POST
    $term = $_GET['searchterm'];
    // Parse query
    $query = Zend_Search_Lucene_Search_QueryParser::parse($term);
    // Return highlighted
    return $query->highlightMatches($this->getContent());
  }

}
?>

In your view (like in this case: Twig) you use:

<h1>The content</h1>
{{model.getContentHighlighted}}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文