cocos3——6.js读取策划json配置表

cocos3——6.js读取策划json配置表,第1张

概述1.excel转json   这个可以参见前辈python的方式: https://github.com/gdgoldlion/ExcelAndJSON   不过这个需要装python和xlrd,装xlrd的时候需要用命令: python setup.py install   在win32上用批处理这样转换excel到json: python %~dp0../src/excel_and_json.

1.excel转Json

这个可以参见前辈python的方式:

https://github.com/gdgoldlion/ExcelAndJSON

不过这个需要装python和xlrd,装xlrd的时候需要用命令:

python setup.py install

在win32上用批处理这样转换excel到Json:

python %~dp0../src/excel_and_Json.py singlebook -o ./ -i test.xlsx


2.Js里读取Json

fs.readfile = function (file) {    var path = this.fullPath(file);    return Jsb.fileUtils.getStringFromfile(path);}fs.readJson = function (file) {    var data = this.readfile(file);    var ret;    try {        ret = JsON.parse(data);    } catch (e) {        console.log('read Json ',file,' error.');    }    return ret;}
总结

以上是内存溢出为你收集整理的cocos3——6.js读取策划json配置表全部内容,希望文章能够帮你解决cocos3——6.js读取策划json配置表所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1032424.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-24
下一篇 2022-05-24

发表评论

登录后才能评论

评论列表(0条)

保存