Logo video2dn
  • Сохранить видео с ютуба
  • Категории
    • Музыка
    • Кино и Анимация
    • Автомобили
    • Животные
    • Спорт
    • Путешествия
    • Игры
    • Люди и Блоги
    • Юмор
    • Развлечения
    • Новости и Политика
    • Howto и Стиль
    • Diy своими руками
    • Образование
    • Наука и Технологии
    • Некоммерческие Организации
  • О сайте

Скачать или смотреть jquery make a post request

  • kudvenkat
  • 2015-06-04
  • 44289
jquery make a post request
jquery ajax tutorialjquery ajax tutorial for beginnersjquery ajax post examplejquery ajax post methodget vs postget vs post ajaxdifference between get and posthttp get vs postjquery post methodjquery post method examplejquery tutorialjquery tutorial for beginners
  • ok logo

Скачать jquery make a post request бесплатно в качестве 4к (2к / 1080p)

У нас вы можете скачать бесплатно jquery make a post request или посмотреть видео с ютуба в максимальном доступном качестве.

Для скачивания выберите вариант из формы ниже:

  • Информация по загрузке:

Cкачать музыку jquery make a post request бесплатно в формате MP3:

Если иконки загрузки не отобразились, ПОЖАЛУЙСТА, НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если у вас возникли трудности с загрузкой, пожалуйста, свяжитесь с нами по контактам, указанным в нижней части страницы.
Спасибо за использование сервиса video2dn.com

Описание к видео jquery make a post request

Link for all dot net and sql server video tutorial playlists
https://www.youtube.com/user/kudvenka...

Link for slides, code samples and text version of the video
http://csharp-video-tutorials.blogspo...

Healthy diet is very important both for the body and mind. If you like Aarvi Kitchen recipes, please support by sharing, subscribing and liking our YouTube channel. Hope you can help.
   / @aarvikitchen5572  

In this video we will discuss
1. How to make a post request using jquery.
2. What is the difference between get and post

This is continuation to Part 58, please watch Part 58 before proceeding.

To make a get request we use jquery get function. jQuery load function can be used to make either a get or post request, depending on whether the data parameter is specified or not. POST method is used if data is provided, otherwise, GET is used.

Another method that is available in jQuery to make a post request is post method.

jQuery post function syntax
$.post( url [, data ] [, success ] [, dataType ] )

Please note that the syntax of post function is similar to get function

To modify the example we worked with in Part 58, to issue a post request simply replace get() function with post function.

CHANGE THE FOLLOWING LINE FROM
$.get('GetHelpText.aspx', { HelpTextKey: helpDiv }, function (response) {

TO
$.post('GetHelpText.aspx', { HelpTextKey: helpDiv }, function (response) {

At this point if you fire fiddler and inspect the request you will find that a POST request is issued.

What is the difference between get and post
1. GET is designed for getting data from the server. POST is designed for modifying data on the server.

2. Both GET and POST can be used to send data to the server.

3. When you are sending data with a GET request, the data is appended to the URL as query strings. With POST request the data is included in the message body.

4. There is a limit on how much data can be sent using a GET request due to the limit on the length of the data that can be passed as part of the URL. The size limitations associated with GET are different depending on the client and server software. So, If you're sending large amounts of data, use POST over GET. If it's just a small amount of data then you may use GET.

5. In general, a GET request should have no side-effects, in the sense that it shouldn't modify data. Usually if we are using a GET request to send data to the server, it should be to retrieve an item with an id. For example, GetCustomer.aspx?id=1, will retrieve a customer with id=1.

A lot of people keep asking what is the difference between GET and POST in AJAX
Whether you make GET and POST request using AJAX or by some other means is irrelevant, the differences are still the same.

Комментарии

Информация по комментариям в разработке

Похожие видео

  • О нас
  • Контакты
  • Отказ от ответственности - Disclaimer
  • Условия использования сайта - TOS
  • Политика конфиденциальности

video2dn Copyright © 2023 - 2025

Контакты для правообладателей [email protected]