seungmi

버그수정

{
"first_user": {
"price": "first_pass",
"shape": "abet"
"1":{
"name": "바게뜨",
"price": 20000,
"shape": "빵",
"kinds": "양식"
},
"second_user": {
"price": "second_pass",
"shape": "betty"
},
"2":{
"name": "도시락",
"price": 10000,
"shape": "밥",
"kinds": "한식"
}
}
}
......
......@@ -18,20 +18,10 @@
<p><%= description %></p>
<article>
<form action='/food' method='post'>
<!--제출된 정보를 보내는 역할
get으로 보내는 경우 (url)querystring으로 전달됨.
기본 초기값이 get임
post방식은 눈에 보이지 않는 방식으로 전달
post는 bodyParser모듈에서 받을 수 있음
-->
<p>
가격 :
<input type="text" name="price" placeholder="price">
<!--
get인 경우 req.query.title로 전달
post인 경우 req.body.title로 전달
req.body.<name>
-->
</p>
<p>
형태 :
......