翻译案例需要向在线接口发起一个Ajax请求,所以需要引入axios
库。当输入一个单词或者文字时自动发起翻译请求。所以可以使用watch
监听器来监听属性是否变更,当发生变化即发起翻译请求。
// 该方法会在数据变化时调用执行
// newValue新值, oldValue老值(一般不用)
watch:{
words (newValue,oldValue) {
console.log('变化了', newValue)
}
}
翻译接口提供:该接口会返回随机字符串作为翻译结果
接口地址:https://applet-base-api-t.itheima.net/api/translate
请求方式:get
请求参数:
(1)words:需要被翻译的文本(必传)
(2)lang: 需要被翻译成的语言(可选)默认值-意大利
监听一个值代码
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<style>写在后面</style>
</head>
<body>
<div id="app">
<!-- 条件选择框 -->
<div class="query">
<span>翻译成的语言:</span>
<select v-model="obj.lang">
<option value="italy">意大利</option>
<option value="english">英语</option>
<option value="german">德语</option>
</select>
</div>
<!-- 翻译框 -->
<div class="box">
<div class="input-wrap">
<textarea v-model="obj.words"></textarea>
<span><i>⌨️</i>文档翻译</span>
</div>
<div class="output-wrap">
<div class="transbox">{{ result }}</div>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/vue@2/dist/vue.js"></script>
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
<script>
const app = new Vue({
el: '#app',
data: {
// words: ''
obj: {
words: '',
lang:''
},
result: '', // 翻译结果
},
// 具体讲解:(1) watch语法 (2) 具体业务实现
watch: {
'obj.words'(newValue) {
// console.log('变化了', newValue)
// 防抖: 延迟执行 → 干啥事先等一等,延迟一会,一段时间内没有再次触发,才执行
clearTimeout(this.timer)
this.timer = setTimeout(async () => {
const res = await axios({
url: 'https://applet-base-api-t.itheima.net/api/translate',
params: {
words: newValue
}
})
this.result = res.data.data
console.log(res.data.data)
}, 300)
}
}
})
</script>
</body>
</html>
上述代码中this.timer
并没有在data中声明,因为该值不需要渲染,所以可以不用在data中声明,使用this.timer
,相当于将timer挂载到app对象上.
监听多个值代码
watch: {
obj: {
deep: true, // 深度监视,obj中任一属性值改变就会被监听到
immediate: true, // 立刻执行,一进入页面handler就立刻执行一次,用于obj.words有初始值
handler (newValue) {
clearTimeout(this.timer)
this.timer = setTimeout(async () => {
const res = await axios({
url: 'https://applet-base-api-t.itheima.net/api/translate',
params: newValue
})
this.result = res.data.data
console.log(res.data.data)
}, 300)
}
}
css样式
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-size: 18px;
}
#app {
padding: 10px 20px;
}
.query {
margin: 10px 0;
}
.box {
display: flex;
}
textarea {
width: 300px;
height: 160px;
font-size: 18px;
border: 1px solid #dedede;
outline: none;
resize: none;
padding: 10px;
}
textarea:hover {
border: 1px solid #1589f5;
}
.transbox {
width: 300px;
height: 160px;
background-color: #f0f0f0;
padding: 10px;
border: none;
}
.tip-box {
width: 300px;
height: 25px;
line-height: 25px;
display: flex;
}
.tip-box span {
flex: 1;
text-align: center;
}
.query span {
font-size: 18px;
}
.input-wrap {
position: relative;
}
.input-wrap span {
position: absolute;
right: 15px;
bottom: 15px;
font-size: 12px;
}
.input-wrap i {
font-size: 20px;
font-style: normal;
}
</style>