async Search(){ const{ res } = await this.$http.get('music/search',this.input) this.musiclist = res
时间: 2024-03-23 11:37:05 浏览: 102
搜索引擎系统音乐搜索
3星 · 编辑精心推荐
根据您提供的代码来看,似乎并没有设置 "search" 参数的值。您可以将参数添加到 `this.input` 对象中,例如:
```
this.input = {
search: 'your search keyword'
}
```
另外,如果您使用的是后端框架如 Spring MVC,还需要在后端对应的方法参数中添加 `@RequestParam` 注解来获取请求参数。
希望这些信息对您有所帮助。
阅读全文