Excel轉(zhuǎn)Json工具(資源配置基礎(chǔ))-創(chuàng)新互聯(lián)

一 , 1.0.0.0版工具特點(diǎn):

① , 支持字段類型( int / float / string / bool / int[] / float[] / string[] / bool[] )
② , 支持前端/后端差異配置
③ , 支持說(shuō)明書sheet
④ , 支持更改編碼方式
⑤ , 支持展開/收縮屬性結(jié)構(gòu)
⑥ , 支持Array模式
⑦ , 支持多sheet配置方式
⑧ , 其他基礎(chǔ)的功能

創(chuàng)新互聯(lián)公司主要從事成都網(wǎng)站設(shè)計(jì)、網(wǎng)站建設(shè)、網(wǎng)頁(yè)設(shè)計(jì)、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務(wù)。立足成都服務(wù)衛(wèi)輝,十余年網(wǎng)站建設(shè)經(jīng)驗(yàn),價(jià)格優(yōu)惠、服務(wù)專業(yè),歡迎來(lái)電咨詢建站服務(wù):18980820575

二 , 使用方式

    ① , 此工具是使用DOS命令的方式來(lái)運(yùn)行的 , 幫助如下圖:

Excel轉(zhuǎn)Json工具(資源配置基礎(chǔ))
現(xiàn)對(duì)各個(gè)命令做解釋:
1` -e 或者 --excel (以下只寫短命令) : excel的相對(duì)位置

2` -j : 導(dǎo)出的json的名稱
3` -h : sheet的頭的行數(shù)(我建議用5個(gè))
4` -c : 編碼方式
5` -l : 字段名稱是否轉(zhuǎn)為小寫
6` -a : 是否使用Array模式
7` -q : 是否為前端配置
8` -i : 最后一個(gè)sheet是否為說(shuō)明書(如果是則不導(dǎo)出config)
9` -o : 導(dǎo)出的json是否是樹形結(jié)構(gòu)展開

② , 關(guān)于資源的位置
如果相對(duì)于AonauflyConfig.exe同級(jí)目錄的話 , 直接使用 --excel xxx.xlsx 和 --json xxx.json;
如果不是 , 這樣相對(duì)應(yīng)地使用../等 , 獲取相對(duì)目錄
③ , 給出幾個(gè)命令(需要在AonauflyConfig.exe同級(jí)目錄打開cmd窗口)
1 : AonauflyConfig --excel test.xlsx --json test.json --header 5 --qianduan true --instruction true --open true
意思 : 將test.xlsx 導(dǎo)到 同級(jí)目錄 test.json ; sheet的標(biāo)題行數(shù)為5 ; 前端配置 ; 樹形結(jié)構(gòu)展開


2 : AonauflyConfig --excel test.xlsx --json test.json --header 5 --array false --qianduan true --instruction true
意思:將test.xlsx 到到 同級(jí)目錄 test.json ; sheet的標(biāo)題行數(shù)為5 ; Array模式;前端配置 ; 最后的sheet為說(shuō)明表(不打印)

三 , 看excel的配置

Excel轉(zhuǎn)Json工具(資源配置基礎(chǔ))
1` 第一行(固定) : 字段名稱

2` 第二行(固定) : 字段類型

3` 第三行(固定) : 后端 (Y : 打印 / N : 不打印)

4` 第四行(固定) : 前端( Y : 打印 / N : 不打印 )

5` ~ n 隨意填寫

四 , 查看打印的前端數(shù)據(jù)如下 :

{"Model":{
  "1": {
    "id": 1,
    "description": "力量型",
    "agility": 10,
    "brains": 10,
    "initHp": 200,
    "initMagic": 100,
    "powerIncrease": 5.0,
    "agilityIncrease": 2.5,
    "brainsIncrease": 2.5,
    "speed": 300,
    "skillIdList": [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      9
    ]
  },
  "2": {
    "id": 2,
    "description": "敏捷型",
    "agility": 25,
    "brains": 10,
    "initHp": 125,
    "initMagic": 175,
    "powerIncrease": 2.5,
    "agilityIncrease": 5.0,
    "brainsIncrease": 2.5,
    "speed": 400,
    "skillIdList": [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      10
    ]
  },
  "3": {
    "id": 3,
    "description": "智力型",
    "agility": 10,
    "brains": 25,
    "initHp": 100,
    "initMagic": 200,
    "powerIncrease": 2.5,
    "agilityIncrease": 2.5,
    "brainsIncrease": 5.0,
    "speed": 300,
    "skillIdList": [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      11
    ]
  },
  "4": {
    "id": 4,
    "description": "力敏型",
    "agility": 18,
    "brains": 9,
    "initHp": 175,
    "initMagic": 125,
    "powerIncrease": 4.0,
    "agilityIncrease": 4.0,
    "brainsIncrease": 2.0,
    "speed": 350,
    "skillIdList": [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      12
    ]
  },
  "5": {
    "id": 5,
    "description": "敏智型",
    "agility": 18,
    "brains": 18,
    "initHp": 125,
    "initMagic": 175,
    "powerIncrease": 2.0,
    "agilityIncrease": 4.0,
    "brainsIncrease": 4.0,
    "speed": 350,
    "skillIdList": [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      13
    ]
  },
  "6": {
    "id": 6,
    "description": "力智型",
    "agility": 9,
    "brains": 18,
    "initHp": 175,
    "initMagic": 125,
    "powerIncrease": 4.0,
    "agilityIncrease": 2.0,
    "brainsIncrease": 4.0,
    "speed": 300,
    "skillIdList": [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      14
    ]
  },
  "7": {
    "id": 7,
    "description": "綜合型",
    "agility": 15,
    "brains": 15,
    "initHp": 150,
    "initMagic": 150,
    "powerIncrease": 3.33,
    "agilityIncrease": 3.33,
    "brainsIncrease": 3.33,
    "speed": 325,
    "skillIdList": [
      1,
      2,
      3,
      4,
      5,
      6,
      7,
      8,
      15
    ]
  }
}}

可以看出sheet名稱作為了config每個(gè)表的title. 并且power字段和xxx字段是沒(méi)有的..

五 , 參考

https://github.com/neil3d/excel2json
本人在此代碼上進(jìn)行了擴(kuò)展及修改 ... 感謝萬(wàn)能的互聯(lián)網(wǎng).

另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)cdcxhl.cn,海內(nèi)外云服務(wù)器15元起步,三天無(wú)理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國(guó)服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡(jiǎn)單易用、服務(wù)可用性高、性價(jià)比高”等特點(diǎn)與優(yōu)勢(shì),專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場(chǎng)景需求。

網(wǎng)站標(biāo)題:Excel轉(zhuǎn)Json工具(資源配置基礎(chǔ))-創(chuàng)新互聯(lián)
瀏覽路徑:http://muchs.cn/article34/poepe.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站內(nèi)鏈、全網(wǎng)營(yíng)銷推廣、App開發(fā)品牌網(wǎng)站建設(shè)、網(wǎng)站策劃、關(guān)鍵詞優(yōu)化

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)

網(wǎng)站建設(shè)網(wǎng)站維護(hù)公司