Themis-Alpha Sprint Essay Collection

Blog content introduction:

This is a a separate top essay to centrally record all the blog links described below for easy viewing and counting by teachers and assistants.

Catalogue

I. Code Standards, Sprint Task and Plans

II. Sprint Essays

III. Testing Essay

IV. Sprint Summary Essay

V. Alpha Sprint Defense PPT

VI. Alpha Sprint Review Sheet


Which course does this assignment belong to2301-MUSE社区-CSDN社区云
Assignment RequirementAlpha sprint assignment's requirement
Team nameTHEMIS
The goal of this assignmentCentralized record of code specifications, sprint tasks and plans, 5 sprint essays, 1 test essay, sprint summary essays blog links, convenient for teachers and assistants to view and statistics.
Other referencesNull

Catalogue

I. Code Standards, Sprint Task and Plans

II. Sprint Essays

III. Testing Essay

IV. Sprint Summary Essay

V. Alpha Sprint Defense PPT

VI. Alpha Sprint Review Sheet


I. Code Standards, Sprint Task and Plans

The Essay concerning Code Standards, Sprint Task and PlansTHEMIS-Team's code standards, sprint task and plans.-CSDN社区

II. Sprint Essays

Sprint Essay 1(Day one and Day two)THEMIS---Alpha Sprint Essays1-CSDN社区
Sprint Essay 2(Day three and Day four)THEMIS---Alpha Sprint Essays2-CSDN社区
Sprint Essay 3(Day five and Day six)THEMIS---Alpha Sprint Essays3-CSDN社区
Sprint Essay 4(Day seven and  Day eight)THEMIS---Alpha Sprint Essays4-CSDN社区
Sprint Essay 5(Day nine and Day ten)THEMIS---Alpha Sprint Essays5-CSDN社区

III. Testing Essay

Testing EssayTHEMIS ----Testing Blog-CSDN社区

IV. Sprint Summary Essay

Sprint Summary Essay

V. Alpha Sprint Defense PPT

Alpha Sprint Defense PPTPowerpoint github link

VI. Alpha Sprint Review Sheet

Alpha Sprint Review SheetAlpha Sprint score sheet
  • 16
    点赞
  • 14
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
可以使用Ant Design Vue 3中的AutoComplete组件来实现模糊查询。 首先,需要先安装Ant Design Vue 3和axios: ```bash npm install ant-design-vue@next axios ``` 然后在需要使用的组件中引入Ant Design Vue 3和axios: ```javascript import { defineComponent } from 'vue' import { AutoComplete } from 'ant-design-vue' import axios from 'axios' ``` 接下来就是在组件中使用AutoComplete组件来实现模糊查询: ```javascript <template> <a-auto-complete v-model:value="keyword" :options="options" :filter-option="false" @search="handleSearch" @select="handleSelect" > <a-input slot="search" :placeholder="placeholder" suffix-icon="search" /> </a-auto-complete> </template> <script> export default defineComponent({ name: 'MyAutoComplete', data() { return { keyword: '', options: [], placeholder: '请输入关键词', } }, methods: { async handleSearch(keyword) { if (keyword) { const res = await axios.get('https://api.example.com/search', { params: { keyword, }, }) this.options = res.data.results } else { this.options = [] } }, handleSelect(value) { console.log('选中的值:', value) }, }, }) </script> ``` 在上面的例子中,AutoComplete组件的options属性绑定了一个options数组,这个数组中的元素是模糊查询的结果。 在handleSearch方法中,使用axios发送请求获取模糊查询的结果,并将结果赋值给options数组。如果没有关键词,则清空options数组。 在handleSelect方法中,可以处理选中结果的逻辑。 最后,在组件中使用MyAutoComplete组件即可实现模糊查询功能。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值