【问题标题】:Call Ajax on the response object of JSON在 JSON 的响应对象上调用 Ajax
【发布时间】:2013-01-23 11:00:31
【问题描述】:

我正在使用来自 json 的 ajax 调用。我从 ajax 调用中调用酒店列表,但现在我必须调用特定酒店的价格。请多多支持。

酒店列表代码如下:
HTML

<td style="color: #993300"><strong>Add Services<input name="add-service" id="add-service" type="button" value="+" style="background-color: #993300; color: #FFFFFF;" /></strong></td>

JQuery 用于调用 ajax 获取酒店列表:

$('#cmb_service').bind('change', function(){

        var value = $(this).val();
        var destination = $( "#destination" )
        $.ajax({
                type : 'POST',
                url : '../enquiries/getpricebyajax',
                dataType : 'json',
                data: {
                        service : value,
                        destno : destination.val()
                },
                success : function(data) {
                       $('#waiting').hide(500);
                       $('#divserviceprovider').text('');
                       $('#divserviceprovider').append(data.msg);
                       $('#divserviceprovider').show(500);
                       if (data.error === true)
                            $('#divserviceprovider').show(500);
                },
                error : function(XMLHttpRequest, textStatus, errorThrown) {
                        $('#waiting').hide(500);
                        $('#divserviceprovider').removeClass().addClass('error')
                            .text('There was an error.').show(500);
                        $('#divserviceprovider').show(500);
                }
        });
        return false;
});`

酒店列表响应的PHP代码如下:

function getpricebyajax()

{
            $str="";$substr="";
            if(!empty($_POST['service']))
                {
                    switch ($_POST['service']) {
                        case "3":
                            {
                                $rshotels=$this->Enquiry->query("SELECT id, name FROM hotels where destination_id=".$_POST['destno']);
                                foreach($rshotels as $hotel){
                                        $substr.='<option value="'.$hotel['hotels']['id'].'">'.$hotel['hotels']['name'].'</option>';
                                }
                                $str.= '<select id="cmb_hotel" name="cmb_hotel">'.$substr.'</select>';
                                $str.= '<div id="divhotel_details"></div>';
                            }
                            break;
                        default:
                            break;
                    }
                    $return['error'] = true;
                    $return['msg'] = $str;
                }
            exit(json_encode($return));
    }

`

我直接将html的代码粘贴到div中。它很好地显示了酒店列表。但是选择“divhotel_details”的代码是什么。当我点击 divhotel_details 时,我必须再次调用 ajax 来生成该酒店的价格。

请给我建议。

提前致谢。

【问题讨论】:

    标签: php jquery json cakephp


    【解决方案1】:

    您可以在这里查看调用 json 服务的正确方法:) - https://rvieiraweb.wordpress.com/2013/01/21/consuming-webservice-net-json-using-jquery/

    编辑:

    <script>
    
    function AjaxCall(){
      var hotel_val = $("#ddl_hotel").val();
    
       //do service ajax call passing the hotel val 
    
       success: function(response) {
         $("#display_info").empty();
         //this 
         $("#display_info").append(response.Yourfields);
         //or LOOP and show in div
       }, 
       error: function(response) {
           $("#display_info").append("No info for this hotel");
       }
    }
    </script>
    
    <select id="ddl_hotel" onchange="AjaxCall();">
      <option value="hotel1">Hotel 1</option>
      <option value="hotel2">Hotel 2</option>
      <option value="hotel3">Hotel 3</option>
    </select>
    
    <div id="display_info">
    

    【讨论】:

    • 谢谢 Ricardo,但我需要根据第一次响应的操作调用嵌套的 ajax。
    • 你可以得到正确的响应并证明正确吗?所以想要你尝试做的是在一个选择框中,在更改时调用新价格正确吗?
    • 你可以这样做 然后在你 callAjax() 再次调用服务并在 div 中显示信息,清理div 第一个 $("#div").empty(); $("#div").append(ajaxresponse) 我会为你发布一个新帖子
    猜你喜欢
    • 2017-10-07
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2014-09-12
    • 2021-01-16
    • 1970-01-01
    相关资源
    最近更新 更多