Slog34_vue 프레임 워 크 초기 프로젝트 를 지배 하 는 블 로그 사이트-등록 페이지-앞 뒤 데이터 상호작용
잠 든 사 자 는 곧 깨 어 날 것 이 고,세 계 는 그것 에 충격 을 줄 것 이다.
개발 환경 MacOS(High Sierra 10.13.5)
필요 한 정보 와 정보 원:
인 코딩 시작
signup_ArthurSlog
var host = 'http://127.0.0.1:3000/signup?';
var signup_container = new Vue({
el: '#signup-container',
data: {
name: '',
password: '',
repassword: '',
firstname: '',
lastname: '',
birthday: '',
sexs: ['male', 'female'],
currentSex: 'male',
ages: ['1', '2', '3', '4', '5', '6', '7', '8',
'9', '10', '11', '12', '13', '14', '15', '16', '17', '18'],
currentAge: '18',
wechart: '',
qq: '',
email: '',
contury: '',
address: '',
phone: '',
websize: '',
github: '',
bio: '',
commits: ['null', 'null']
},
methods: {
addUser: function () {
var xhr = new XMLHttpRequest()
xhr.open('GET', host + 'name=' + this.name + '&password=' + this.password + '&firstname=' +
this.firstname + '&lastname=' + this.lastname + '&birthday=' + this.birthday
+ '&sex=' + this.currentSex + '&age=' + this.currentAge + '&wechart=' + this.wechart
+ '&qq=' + this.qq + '&email=' + this.email + '&contury=' + this.contury
+ '&address=' + this.address + '&phone=' + this.phone + '&websize=' + this.websize
+ '&github=' + this.github + '&bio=' + this.bio, true)
xhr.send()
}
}
})
methods: {
addUser: function () {
var xhr = new XMLHttpRequest()
xhr.open('GET', host + 'name=' + this.name + '&password=' + this.password + '&firstname=' +
this.firstname + '&lastname=' + this.lastname + '&birthday=' + this.birthday
+ '&sex=' + this.currentSex + '&age=' + this.currentAge + '&wechart=' + this.wechart
+ '&qq=' + this.qq + '&email=' + this.email + '&contury=' + this.contury
+ '&address=' + this.address + '&phone=' + this.phone + '&websize=' + this.websize
+ '&github=' + this.github + '&bio=' + this.bio, true)
xhr.send()
}
}
http://127.0.0.1:3000/signup?name=???&password=???... , ,
xhr.open('GET', host + 'name=' + name + '&password=' + password + '&firstname=' +
firstname + '&lastname=' + lastname + '&birthday=' + birthday
+ '&sex=' + currentSex + '&age=' + currentAge + '&wechart=' + wechart
+ '&qq=' + qq + '&email=' + email + '&contury=' + contury
+ '&address=' + address + '&phone=' + phone + '&websize=' + websize
+ '&github=' + github + '&bio=' + bio, true)
XMLHttpRequest.send() HTTP 。 ( ), ; , 。XMLHttpRequest.send() , ; GET HEAD, null。
setRequestHeader() Accept , * / * Accept 。
저의 위 챗 공식 아 더 슬 로그 에 주목 해 주 셔 서 감사합니다.
제 글 이 마음 에 드 시 면 좋아요 댓 글 을 눌 러 주세요.
감사합니다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Express + AWS S3 이미지 업로드하기웹 사이트 및 모바일 애플리케이션 등에서 원하는 양의 데이터를 저장하고 보호할 수 있다. 데이터에 대한 액세스를 최적화, 구조화 및 구성할 수 있는 관리 기능을 제공한다. AWS S3 에 저장된 객체에 대한 컨테이너...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.