weixin_33712881 2018-11-11 23:04 采纳率: 0%
浏览 16

Ajax第一次尝试

Could you please help me? I'm trying Ajax for the first time? what I'm missing?

Ajax code (It gets to the confirm dialog, then nothing happens).

        <script src="https://code.jquery.com/jquery-3.3.1.js"></script>
        <script>
          //anyjscode

          jQuery(document).ready(function() 
          {

            jQuery('#ajaxSubmit').click(function(e) 
            {

              e.preventDefault();
              $.ajaxSetup(
              {
                headers: 
                {
                 'X-CSRF-TOKEN': $('meta[name="_token"]').attr('content')
                }
              });

              confirm ('¿very sure?');

              jQuery.ajax(
              {
                url: "{{ url('/https/ask.csdn.net/gymmgr/public/notas/test/') }}",
                method:'get',
                data:
                {
                  dcmTest:jQuery('#dcmTest').val()
                },
                sucess: function(result)
                {
                  console.log(result);
                }
              });


            } );    
          } );    

        </script>

This is the route at my web.php file

    Route::get('notas/test/', 'NotasController@test')->name('notas.test');

And it's code

public function test()
{
    dd('Test');
}

Part of the code I'm using for the test, this at my view.

                                <div>
                                  <label for="dcmTest">Test</label>
                                  <input type="number" 
                                    class="form-control" 
                                    min="0.00" 
                                    max="100000.00" 
                                    step="0.01" 
                                    name="dcmTest" 
                                    id="dcmTest" 
                                    placeholder="test" 
                                    value=0 
                                    readonly>
                                </div>
                                  <button type="button" class="btn btn-default" id="ajaxSubmit">OK</button>
                              </div>

This is what i got after the call at my console. Could you help me to interpret it? did it really load? why the dd function wasn't call at all?

enter image description here

Does it mean it arrived? why it doesn't showed the text? it's at client side...

enter image description here

  • 写回答

0条回答 默认 最新

    报告相同问题?