0

我在片段更新时遇到问题。更改选择框中的选择后,我在另一个选择框中重绘了选项的内容,但片段没有更新。

拿铁:

<form class="df-checkout">
...

<select n:href="getHraci!" name="domaci" id="domaci" class="form-control">
    <option value="">Vybrat</option>
    <option n:foreach="$tymy as $tym" value="{$tym->getId()}">
        {$tym->getNazev()}
    </option>
</select>

...

<div class="row helpers hidden">
    <select n:snippet="hraciDomaci" class="form-goly-domaci-select form-control">
        <option></option>
        <option n:foreach="$hraciDomaci as $hrac" value="{$hrac->getId()}">
            {$hrac->getPrijmeni()} {$hrac->getJmeno()}
        </option>
    </select>

    <input type="text" class="form-goly-input form-control">
</div>

JS文件:

$(document).ready(function(){
    $("#domaci").bind('change', function() {
        var link = $(this).attr("href");

        $.nette.ajax ({
            url: link,
            data: {"strana": "domaci", "tymId": $(this).val()},
            type: 'get',
            dataType:'json'
        });
    });
});

控制器:

public function handleGetHraci($strana, $tymId)
{
    $tym = $this->tymManager->getTymRepository()->find($tymId);
    $muzstvo = $this->tymManager->getMuzstvoRepository()->findBy(["nazev" => self::HLAVNI_TYM]);
    $hraci = $this->hracManager->getHracRepository()
                ->findBy(["tym" => $tym, "muzstvo" => $muzstvo], ["prijmeni" => "ASC", "jmeno" => "ASC"]);

    if($this->isAjax()){
        $this->template->hraciDomaci = $hraci;

        $this->redrawControl('hraciDomaci');
    }
}

表单还没有创建和处理,所以我做的第一个选择框是临时的,带有片段的选择框独立于表单。我用它来复制。JS 正确调用处理程序,如果我在 redrawControl之前转储$this->template->hriciDomaci数据就在那里,但redrawControl不会做任何事情。但是在下面的 Tracy 栏的页面中添加了一个新的过程行。我的调试器中没有错误,进程的状态为 200,但响应仅包含:

{"state":[],"snippets":{"snippet--hraciDomaci":"\t\t\t\t\t\t\t\t\t\t<option></option>\n"}}

我尝试使用$.get而不是$.nette.ajax,换行snippetArea中,我通常在 中有此代码{block content},因此不需要 snippetAreanette.ajax.js$.nette.init();我也有初始化。

非常感谢您的任何建议。

4

1 回答 1

1

检查您没有在演示者的方法(例如)中重写hraciDomaci变量render*renderDefault

于 2018-09-07T08:52:36.623 回答