java springmvc post表單提交問題

2021-07-25 13:53:23 字數 428 閱讀 9474

有個實體類帶有時間格式,post 服務端介面如下

public string editvotetopic( votetopic votetopic )

提交方式用表單序列號

$.ajax({

url: "#springurl('/vote/topic/editvotetopic')",

data: $(form).serialize(),

type: "post",

success: function(data){

結果錯誤405 method not allowd,一般這在是介面不對,包括介面引數不匹配。

按上述想法看可能問題出在日期,因為實體類是date,而前端可能時間格式無法自動轉換

解決方案

實體類字段定義為date,而屬性方法引數為string,最後屬性方法裡進行轉換。

Flex HTTPService 提交表單

方法1 採用urlvariables物件 import mx.controls.alert import mx.rpc.events.resultevent 對提交給後台的引數進行utf 8的編碼處理 方法2 採用,同時也演示了mx state的用法,來自網上 import mx.rpc.event...

html表單提交

用來收集資訊 form中的屬性 action 提交的路徑 method get post提交表單的方式 標籤type屬性的不同的值所表示的含義 text 文字框 value表示文字框中的值 readonly表示唯讀,可以寫readonly或true disable表示標籤不可用,可以寫disable...

form表單提交

表單的enctype屬性 enctype 屬性規定在傳送到伺服器之前應該如何對表單資料進行編碼。value 值 描述在傳送前編碼所有字元 預設 multipart form data 不對字元編碼。在使用包含檔案上傳控制項的表單時,必須使用該值。text plain 空格轉換為 加號,但不對特殊字元...