var that=this
get request
that.$http.get("1.txt").then(function(result){
console.log(result)
this.msg=result.data;
})
post 요청 데이터를 보내고 받는 환경이 필요합니다
that.$http.post("1.txt","" ).then(function(result){
console.log(result)
})
종합적인 요청
that.$http({
method:"get" ,
url:"1.txt"
}).then(function(result){
console.log(result.data)
})
es6 요청 method 요청 메소드 캐시 캐시할지 아니면 다시 로드할지 여부
fetch("url",{method:"get",cache:"reload"}).then(function(){
})
vue2 요청
axios({
url:"www.baidu.com?pageStart=18pageSize=3",
method:"get/post",
만약에 요청을 가져오는 경우 매개변수를 사용하여 데이터 또는 주소 표시줄 연결을 전송합니다.
params: {
pageStart:1,
pageSize:3
}
인 경우 요청 게시, 데이터 사용 데이터 전송으로 이동하기
}
})
Instance
Baidu 교차 출처 요청
var that= this;
that.$http.jsonp("
",{wd:this.abc},{jsonp:"cb"}).then(function( 결과){ console.log(result.data.s)
})
360 도메인 간 요청that.$http.jsonp("https:// sug.so.360.cn/ presents?encodein=utf-8&encodeout=utf-8",{word:this.abc},{emulateJSON:true}).then(function(result){
console.log(result .data.s)})
위 내용은 Vue의 데이터 상호작용 형태는 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!