click

1,0; 3,0; 5,0;

this.text 没有变更,所以不会被预编译优化侦听到 text

jsx code

12345678901012345678902012345678903012345678904012345678905012345678906012345678907012
  1. class MyComponent extends migi.Component {
  2.   constructor(data) {
  3.     super(data);
  4.     this.index = 0;
  5.     this.text = 'text';
  6.     this.on(migi.Event.DOMfunction() {
  7.       this.element.addEventListener('DOMSubtreeModified'function(e) {
  8.         // 点击后只会有一处dom变更,即span节点
  9.         console.log(e);
  10.       });
  11.     });
  12.   }
  13.   @bind index
  14.   @bind text
  15.   handleClick() {
  16.     this.index = this.index >= 2 ? 0 : this.index+1;
  17.   }
  18.   render() {
  19.     return (
  20.       <div>
  21.         <p onClick={ this.handleClick }>click</p>
  22.         <span>
  23.         {
  24.           [135].map((item) => {
  25.             // this.index引用出现在arrowFunction中,但因为this没有变更,所以仍然在监听范围内
  26.             return item + ',' + this.index + '; ';
  27.           })
  28.         }
  29.         </span>
  30.         <p>this.text 没有变更,所以不会被预编译优化侦听到 this.text }</p>
  31.       </div>
  32.     );
  33.   }
  34. }
  35.  
  36. migi.render(
  37.   <MyComponent />,
  38.   '#example'
  39. );
class MyComponent extends migi.Component {
  constructor(data) {
    super(data);
    this.index = 0;
    this.text = 'text';
    this.on(migi.Event.DOM, function() {
      this.element.addEventListener('DOMSubtreeModified', function(e) {
        // 点击后只会有一处dom变更,即span节点
        console.log(e);
      });
    });
  }
  @bind index
  @bind text
  handleClick() {
    this.index = this.index >= 2 ? 0 : this.index+1;
  }
  render() {
    return (
      <div>
        <p onClick={ this.handleClick }>click</p>
        <span>
        {
          [1, 3, 5].map((item) => {
            // this.index引用出现在arrowFunction中,但因为this没有变更,所以仍然在监听范围内
            return item + ',' + this.index + '; ';
          })
        }
        </span>
        <p>this.text 没有变更,所以不会被预编译优化侦听到 { this.text }</p>
      </div>
    );
  }
}

migi.render(
  <MyComponent />,
  '#example'
);