포도가게의 개발일지
url parameter 주고 받는법 본문
반응형
1. request 함수 사용 방법
javascript ajax 이용법
function getList(num) {
let number = num;
$.ajax({
type: 'GET',
## ex) url: `라우터 주소?key=value` ##
url: `/boardlist?page=${number}`,
data: {},
success: function (response) {
console.log(response)
}
});
}
python
@app.route("/boardlist", methods=['GET'])
def boardlist():
page = request.args.get('page')
print(page)
2. url로 넘겨주는 방법
python
## route('라우트주소/<파라미터>')
## <변수> 주소로 읽지않고 /add_city/65654
## username = 65654로 들어온다
@app.route("/add_city/<username>", methods=['GET'])
def add(username):
print(username)
return render_template('add_city.html')
javascript
function detail(name) {
## 'route 주소(/detail/' + 보내줄 value(name)
window.open('/detail/' + name);
}
'웹' 카테고리의 다른 글
Socket vs WebSocket vs Socket.IO? (0) | 2021.11.26 |
---|---|
Flask pyJWT token 사용법 (0) | 2021.07.30 |
JSON이란? (0) | 2021.07.12 |
$.ajax is not a function(jQuery 에러) (0) | 2021.07.07 |
쇼핑몰 만들기(메인 mall) (0) | 2021.07.07 |
Comments