当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript commerce.department方法代码示例

本文整理汇总了TypeScript中faker.commerce.department方法的典型用法代码示例。如果您正苦于以下问题:TypeScript commerce.department方法的具体用法?TypeScript commerce.department怎么用?TypeScript commerce.department使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在faker.commerce的用法示例。


在下文中一共展示了commerce.department方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: initDb

/** Create the database. */
async function initDb() {

    // Creates the file.
    try {
        await sequelize.authenticate();
        console.log('Connection to the database successful.');
    } catch (error) {
        console.log(`Error while trying to connect to the database: ${error}`);
    }

    // Syncs the model
    try {
        await sequelize.sync({force: true});
        console.log('Database sync sucessful');
    } catch (error) {
        console.log(`Error while trying to sync the model with the database : ${error}`);
    }

    if (process.env.DB_ENV !== 'prod') {
        // Populate the database with fake data
        try {
            let data: IArticle[] = [];
            for (let i = 0; i < 10; i++) {
                data.push({
                    title: faker.commerce.department(),
                    description: faker.lorem.sentence(),
                    content: faker.lorem.sentences(),
                    published: faker.random.boolean(),
                    publishedAt: new Date().toISOString()
                });
            }
            await Article.bulkCreate(data);
            console.log('10 articles successfully inserted.');
        } catch (error) {
            console.log(`Error while trying to insert an article in the database : ${error}`);
        }
    }
}
开发者ID:get-focus,项目名称:focus-help-center,代码行数:39,代码来源:init.ts

示例2:

 productCategory: () => faker.commerce.department(),
开发者ID:codeaudit,项目名称:graphql-faker,代码行数:1,代码来源:fake.ts


注:本文中的faker.commerce.department方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。