如何使用cakephp 2.x设置值到输入字段?

时间:2015-10-19 17:39:18

标签: javascript php jquery cakephp

我需要在cakephp 2.x中为输入文本字段设置一个值。

描述: 我有一个选择字段,我在其中显示文章列表,根据用户选择的文章,我必须在输入文本字段中设置本文的价格(只读)。

我正在使用javascript。这是我的代码:

<script type="text/javascript">

    function alerta(a){
           var price = ?//something in a function within my controller.
           document.getElementById("AperturaArticuloPrecio").value = "price";
    }

</script> 

我的输入字段:

echo "<table><tr><td>";
echo $this->Form->input('articulo_id',array('onChange' => 'alerta(1)'));
echo "</td><td>";
echo $this->Form->input('cantidad',array('type' => 'text'));
echo "</td><td>";
echo $this->Form->input('precio',array('type' => 'text','readonly' => 'readonly'));
echo "</td><td>";
echo $this->Form->input('total',array('type' => 'text','readonly' => 'readonly'));
echo "</td></tr></table>";

我理解&#39; a&#39;我的javascript代码中的变量必须是文章的名称,我需要使用mi控制器来获取本文的价格,但我不知道如何使用javascript调用控制器。

如果您需要更多详细信息,请告诉我。谢谢。

更新

我为下一个代码更改了我的javascript代码:

    <?php
        $this->Js->get('#AperturaArticuloArticuloId')->event('change', '
                //alert($( "#AperturaArticuloArticuloId" ).val());
                $( "#AperturaArticuloPrecio" ).val($( "#AperturaArticuloArticuloId option:selected" ).text());
                //Here something to call my function in my controller
            ');
        echo "<table><tr><td>";
        echo $this->Form->input('articulo_id');
        echo "</td><td>";
        echo $this->Form->input('cantidad',array('type' => 'text'));
        echo "</td><td>";
        echo $this->Form->input('precio',array('type' => 'text','readonly' => 'readonly'));
        echo "</td><td>";
        echo $this->Form->input('total',array('type' => 'text','readonly' => 'readonly'));
        echo "</td></tr></table>";
    ?>

所以我可以选择文章的索引及其内容,我只需要将这些值发送到我的控制器中的一个函数。我怎么能这样做? - 我需要使用AJAX,Json还是别的什么?

在我的控制器中我有这个功能,但我不知道如何访问它:

public function getPrice($id = null) {

    $options = array(
        'fields' => array('Articulo.precio'),
        'conditions' => array('Articulo.id' => $id));
    $price = $this->Articulo->find('list', $options);

    echo $price;
}   

我会感激一个链接! XD

1 个答案:

答案 0 :(得分:0)

我在这里搜索:http://book.cakephp.org/2.0/en/core-libraries/helpers/js.html我和update form field with js but not showing in submitted data

混在一起

我的解决方案是:

8.8.8.8

并在我的控制器中:

    <?php
        $data = $this->Js->get('#AperturaArticuloArticuloId')->serializeForm(array('inline' => true));

        $this->Js->get('#AperturaArticuloArticuloId')->event(
            'change',
            $this->Js->request(
                array(
                    'action' => 'getPrice', 
                    'controller' => 'articulos'
                ),
                array(
                    //'update' => '#AperturaArticuloPrecio',
                    'success' => '
                        $("#AperturaArticuloPrecio").val(data);
                        //More javascript code here
                    ',
                    'data' => $data,
                    'async' => true,    
                    'dataExpression'=>true,
                    'method' => 'POST'
                )
            )
        );

        echo $this->Js->writeBuffer();

        echo "<table><tr><td>";
        echo $this->Form->input('articulo_id');
        echo "</td><td>";
        echo $this->Form->input('cantidad',array('type' => 'text'));
        echo "</td><td>";
        echo $this->Form->input('precio',array('type' => 'text','readonly' => 'readonly'));
        echo "</td><td>";
        echo $this->Form->input('total',array('type' => 'text','readonly' => 'readonly'));
        echo "</td></tr></table>";
    ?>

感谢大家的帮助!