在vue中methods中一个方法调用另一个方法并且有返回参数
时间: 2024-02-05 09:12:58
浏览: 53
在 Vue 的 methods 中,如果一个方法需要[调用]([http](https://geek.csdn.net/educolumn/68f28ca3131d47699e5902c5d3d74d51?spm=1055.2569.3001.10083)s://geek.csdn.net/educolumn/67aac0e278b6ccafb1cca450c4252459?spm=1055.2569.3001.10083)另一个方法并且需要返回参数,可以使用以下方法:
```[javascript](https://geek.csdn.net/educolumn/3e427b9940783449029130030e9c9e62?spm=1055.2569.3001.10083)
methods: {
method1() {
// [调用](https://geek.csdn.net/educolumn/67aac0e278b6ccafb1cca450c4252459?spm=1055.2569.3001.10083) method2,并且将 method2 的返回值保存到 result 变量中
const result = this.method2();
// 处理 result
method2() {
// 这里是 method2 的[逻辑](https://geek.csdn.net/educolumn/631ffc96cf8c68e9cf281cf1f6cc5aa2?spm=1055.2569.3001.10083),返回一个值
return 'hello world';
```