사용자 편의를 위해 인터페이스 등록시 인바운드 url 시작이 "/" 로 시작할 경우 "/"는 전부 replace 시킴.
This commit is contained in:
@@ -830,7 +830,12 @@
|
||||
//표준이 아닐경우 업무추출키 셋팅되어야 됨
|
||||
$("input[name=bzwkSvcKeyName]").val($("input[name=eaiTranName]").val());
|
||||
}
|
||||
|
||||
|
||||
// 사용자 편의를 위해 inboundRestPath 앞에 "/" 는 제외함.
|
||||
$("input[name=inboundRestPath]").val(function(index, value) {
|
||||
return value.replace(/^\/+/, "");
|
||||
});
|
||||
|
||||
var postData = $('#ajaxForm').serializeArray();
|
||||
if (isDetail){
|
||||
postData.push({ name: "cmd" , value:"UPDATE"});
|
||||
|
||||
Reference in New Issue
Block a user