ajax postリクエスト400,415エラーの解決方法



400、415 。 : , :
		type : "post",
		url : URL,
		dataType : "json",
		contentType :"application/json",	
                data:{
                        date: date,
	                buildingId :buildingId,
	                typeValue : typeValue,
                      }
バックグラウンドエラーは400ではなく415で、どうせ1つのタイプのエラーで、私は帰ってきたデータを1つのオブジェクトにカプセル化して、それをJSONで使います.stringify()は文字列に解析すればよいが、具体的なコードは以下の通りである.
function entity(buildingId, typeValue,date) {
	this.date = date;
	this.buildingId = buildingId;
	this.typeValue = typeValue;
}
function text(){
  ruturnData = new entity(buildingId, typeValue,date);
  type : "post",
  url : URL,
  data : JSON.stringify(ruturnData),
  dataType : "json",
  contentType :"application/json",
}