我正在使用本机和博览会构建一个应用程序。如何在箭头函数内调用相邻函数。 funcTwo
未被调用,funcOne
也没有警告/错误出现。
// Call first fucntion inside MainScreen.js
import Fire from '../Fire';
export default class MainScreen extends React.Component {
makeRemoteRequest = async () => {
const res = await Fire.shared.funcOne({ title: "test" });
}
};
// Fire.js
class Fire {
funcOne = async ({title}) => {
this.funcTwo(title);
};
funcTwo = async (title) => {
// save to database
console.log(title);
};
}
Fire.shared = new Fire();
export default Fire;
答案 0 :(得分:0)
致电[sorts]="[{ prop: 'age', dir: 'asc' }]"
时,您在<ngx-datatable
#myTable
class='material expandable'
[rows]="rows"
[groupRowsBy]="'age'"
[columnMode]="'force'"
[scrollbarH]="true"
[headerHeight]="50"
[footerHeight]="50"
[rowHeight]="40"
[limit]="4"
[groupExpansionDefault]="false"
[sorts]="[{ prop: 'age', dir: 'asc' }]">
中找不到await
如果您返回的是funcOne
的值,则可以省略funcTwo
所以..
await