文本资源

Creator 支持使用文本文件,常见的文本格式如:.txt.plist.xml.json.yaml.ini.csv.md。通过 资源导入 的方式将其导入到编辑器,所有的文本文件都会导入为 cc.TextAsset 格式的资源。

使用方式

开发者可通过 编辑器挂载代码中动态加载 两种方式获取文本数据。

通过编辑器

首先在 资源管理器 中新建一个 TypeScript,脚本内容示例如下:

  1. import { _decorator, Component, TextAsset } from 'cc';
  2. const { ccclass, property } = _decorator;
  3. @ccclass('ItemTemplate')
  4. export class ItemTemplate extends Component {
  5. // 声明属性 ‘itemGiftText‘ 的类型为 TextAsset
  6. @property(TextAsset)
  7. itemGiftText: TextAsset = null!;
  8. start () {
  9. const data: string = this.itemGiftText.text!;
  10. }
  11. }

保存脚本内容后回到编辑器,将脚本挂载到相应的节点上,然后将 资源管理器 中的文本资源拖拽到脚本组件相应的属性框中。例如下图:

text

通过代码动态加载

开发者也可以直接通过代码 动态加载 来获取文本数据,代码示例如下:

  1. import { _decorator, Component, resources, error, TextAsset } from 'cc';
  2. const { ccclass, property } = _decorator;
  3. @ccclass('ItemTemplate')
  4. export class ItemTemplate extends Component {
  5. start () {
  6. resources.load('itemGiftText', (err: any, res: TextAsset) => {
  7. if (err) {
  8. error(err.message || err);
  9. return;
  10. }
  11. // 获取到文本数据
  12. const textData = res.text;
  13. })
  14. }
  15. }