npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@steedos/data-import

v2.7.15

Published

<!-- * @Author: [email protected] * @Date: 2021-10-21 09:57:01 * @LastEditors: 孙浩林 [email protected] * @LastEditTime: 2023-11-14 11:13:54 * @Description: --> ## 功能说明 - 此包是系统设置中的数据导入功能,可通过excel导入对象数据

Downloads

4,346

Readme

功能说明

  • 此包是系统设置中的数据导入功能,可通过excel导入对象数据

提供importData action 支持导入{objectname}.data.json、{objectname}.data.csv数据

  • 比如在自定义的软件包package.service.js中监听系统初始化事件调用importData导入软件包中的数据:

module.exports = {
    /**
     * Events
     */
    events: {
        // 系统初始化成功
        'service-cloud-init.succeeded': async function (ctx) {
            await this.broker.call("@steedos/data-import.importData", {
                data: {
                    "csv": csvData,
                    "json": jsonData,
                },
                spaceId,
                onlyInsert: true,
            })
        }
    },
};
  • importData action 参数说明
/**
 * 参数示例:
{
    data: {
        "csv": [{ objectName: 'warehouse', records: [ [Object] ]],
        "json": [{ objectName: 'house', records: [ [Object] ]],
    },
    spaceId,
    onlyInsert: true,
}
    */
"importData": {
    params: {
        data: {
            type: "object",
            props: {
                csv: {
                    type: "array",
                    items: {
                        type: "object",
                        props: {
                            objectName: { type: "string" },
                            records: { type: "array", items: "object" },
                        }
                    },
                    optional: true,
                },
                json: {
                    type: "array",
                    items: {
                        type: "object",
                        props: {
                            objectName: { type: "string" },
                            records: { type: "array", items: "object" },
                        }
                    },
                    optional: true,
                },
            }
        },
        spaceId: { type: "string" },
        onlyInsert: { type: "boolean", optional: true, default: true }, // 仅新增,在导入数据之前先检查,如果存在任意一条记录,则不执行导入,默认true,如果是false, 则如果存在则执行更新操作。
    },
    async handler(ctx) {
        
    }
}

使用mongodb cli 导出演示数据

  • json: 使用命令导出。例如: mongoexport --uri="mongodb://192.168.3.31:27017/steedos-apps" --jsonArray --collection=contract_types --out=contract_types.data.json
  • csv: 使用命令导出。例如: mongoexport --uri="mongodb://192.168.3.31:27017/steedos-apps" --collection=contract_types --type=csv --fields=name,code --out=contract_types.data.csv

编码要求

json、csv中文件请使用utf-8编码

示例,导出合同模块数据, 进入main\default\data文件夹后执行以下命令

mongoexport --uri="mongodb://192.168.3.31:27017/steedos-apps"  --collection=contract_types --type=csv --fields=name,code --out=contract_types.data.csv

mongoexport --uri="mongodb://192.168.3.31:27017/steedos-apps" --jsonArray --collection=contracts  --out=contracts.data.json