注释

sjs文件中的注释方式与JavaScript一致。

  • sjs文件中的代码注释

代码示例在开发者工具中预览效果

  1. // pages/utils/sjs
  2. // const NAME = 'sjs';
  3. /**
  4. * let str = 'swan';
  5. */
  • import-sjs 标签中代码注释

代码示例在开发者工具中预览效果

  1. <!-- pages/index/index.swan -->
  2. <import-sjs module="utils">
  3. // const NAME = 'sjs';
  4. /**
  5. * let str = 'swan';
  6. */
  7. </import-sjs>

上述例子中,所有SJS代码均被注释掉了。