一言开发者中心 | 用代码表达言语的魅力,用代码书写山河的壮丽。
每日一言 直接调用接口 使用axios发送请求 返回数据 储存pinia里面 公用全局
const getHitokoto = async () => {try {const response = await axios.get('https://v1.hitokoto.cn/?c=f&encode=text')const data = response.dataif (data) {const hitokotoElement = document.querySelector('#hitokoto_text') as HTMLAnchorElement | nullif (hitokotoElement && data !== undefined) {userStore.setoneWordPerDay(data)} else {console.error("Element with id 'hitokoto_text' not found in the DOM")}}} catch (error) {console.error(error)}
}getHitokoto() //获取每日一言
动态图片直接使用链接
根据不同的后缀类型每次图片不一样
<img class="carousel-img"src="https://source.unsplash.com/1600x900/?dog">