配置

config 函数

Ale 函数内置了 Ale.config 函数,用来更改一些 Ale 配置信息。目前 config 函数支持的配置如下:

  • html (默认false)【是否不自动转义html标签(可以预防xss攻击,不要轻易打开)】
  • diff (默认true)【是否在操作 DOM 时应用 diff 算法(推荐小应用关闭,中大型应用需要开启)】
    你可以通过如下方式更改某一种配置:
  1. Ale.config("html", true);

    /* 或 */

    Ale.config({
    html: true,
    diff: false
    })

原文: https://cn.alejs.org/2018/12/01/config