在arrow函数内部调用arrow函数。反应本机

时间:2019-09-28 04:17:03

标签: reactjs react-native

我正在使用本机和博览会构建一个应用程序。如何在箭头函数内调用相邻函数。 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;

1 个答案:

答案 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