我对代码段更新有疑问。在选择框中更改选择后,我在另一个选择框中重新绘制了选项的内容,但是代码段没有更新。

拿铁:

<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-> hraciDomaci,则数据在那里,但是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}中包含此代码,因此不需要snippetArea。初始化$.nette.init();的nette.ajax.js我也有。

非常感谢您的任何建议。

最佳答案

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

08-25 12:51