Bluetoothアイテムの変更ボタンをクリック中にエラーが発生しました
今日は、オリジナルメニューを修正したときに出てきたエラーについての記事です.
エラーが頻繁に発生するカラムタイプは無効です.
しかし、1番の値がnullだと教えてくれれば親切です.だからjspファイルに行って確認しました.
誤り
エラーが頻繁に発生するカラムタイプは無効です.
しかし、1番の値がnullだと教えてくれれば親切です.だからjspファイルに行って確認しました.
<form action="#" id="edit_Form" method="post">
<input type="hidden" name="menuNo" value="${data.MNO}">
<input type="hidden" name="page" value="${param.page}">
<input type="hidden" name="search_Filter" value="${param.search_Filter}">
<input type="hidden" name="search_input" value="${param.search_input}">
</form>
<!--컨텐츠 -->
<div class="content_Area">
<div class="content">
<h1>POS 메뉴조회</h1>
<div class="btn_Area">
<button class="row_Cnl">취소</button>
<button class="row_Submit">완료</button>
</div>
<table cellspacing="0">
<colgroup>
<col width="20%" />
<col width="20%" />
<col width="20%" />
<col width="20%" />
<col width="20%" />
<col width="20%" />
</colgroup>
<tr>
<th scope=col style= "border-left: none;">메뉴번호</th>
<th scope=col>메뉴이름</th>
<th scope=col>카테고리</th>
<th scope=col>가격(원)</th>
<th scope=col>이미지</th>
<th scope=col>비고</th>
</tr>
<tr>
<td>${data.MNO}</td>
<td>${data.MNAME}</td>
<td>${data.CNAME}</td>
<td><input type="text" id="m_Price" name="m_Price" value="${data.MPRICE}"></td>
<td>${data.MIMG}</td>
<td><input type="text" id="m_Note" name="m_Note" value="${data.NOTE}"></td>
</tr>
</table>
入力後に完了ボタンをクリックすると、私が入力した値はnameに含まれてformに送信されるはずですが、formラベルはtrの下まで続くはずで、降りていないので、最初から値を超えていないので、起こったことです.수정 코드
<form action="#" id="edit_Form" method="post">
<input type="hidden" name="menuNo" value="${data.MNO}">
<input type="hidden" name="page" value="${param.page}">
<input type="hidden" name="search_Filter" value="${param.search_Filter}">
<input type="hidden" name="search_input" value="${param.search_input}">
<!--컨텐츠 -->
<div class="content_Area">
<div class="content">
<h1>POS 메뉴조회</h1>
<div class="btn_Area">
<button class="row_Cnl">취소</button>
<button class="row_Submit">완료</button>
</div>
<table cellspacing="0">
<colgroup>
<col width="20%" />
<col width="20%" />
<col width="20%" />
<col width="20%" />
<col width="20%" />
<col width="20%" />
</colgroup>
<tr>
<th scope=col style= "border-left: none;">메뉴번호</th>
<th scope=col>메뉴이름</th>
<th scope=col>카테고리</th>
<th scope=col>가격(원)</th>
<th scope=col>이미지</th>
<th scope=col>비고</th>
</tr>
<tr>
<td>${data.MNO}</td>
<td>${data.MNAME}</td>
<td>${data.CNAME}</td>
<td><input type="text" id="m_Price" name="m_Price" value="${data.MPRICE}"></td>
<td>${data.MIMG}</td>
<td><input type="text" id="m_Note" name="m_Note" value="${data.NOTE}"></td>
</tr>
</form>
前画面の変更
変更後の画面
Reference
この問題について(Bluetoothアイテムの変更ボタンをクリック中にエラーが発生しました), 我々は、より多くの情報をここで見つけました https://velog.io/@wogus216/블루보틀-프로젝트-수정-버튼-클릭-시-오류テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol