如何在Web应用程序中管理http内容类型

时间:2016-07-19 06:24:40

标签: javascript angularjs ajax http content-type

我正在开发一个angular应用程序,它向服务器发出几个http请求,主要是POST和GET请求。

我想知道我们是否可以混合使用

$(document).ready(function(){
  function size(a){
    var height = $(a).height(); 
    var width = $(a).width();
    $('#picbox').find('p.size').remove();
    $('#picbox').append('<p class="size">' + width + '-' + height + '</p>');
  }

  size('#protoimg');
  $(window).resize(size('#protoimg'));
)};

'Content-Type': 'application/x-www-form-urlencoded 

根据要求,即 一个请求使用application / json和另一个application / x-www-form-urlencoded。

或者仅使用一种内容类型是一种好习惯。

0 个答案:

没有答案