forked from p96170835/amis
change event name
This commit is contained in:
parent
aa314e7509
commit
faf80abdcd
|
@ -26,7 +26,7 @@ window.addEventListener('message', e => {
|
||||||
|
|
||||||
```json
|
```json
|
||||||
{
|
{
|
||||||
"type": "amis:load", // 当前事件类型
|
"type": "amis:init", // 当前事件类型
|
||||||
"data": {
|
"data": {
|
||||||
//... 当前数据域数据
|
//... 当前数据域数据
|
||||||
}
|
}
|
||||||
|
|
|
@ -70,7 +70,7 @@ export default class IFrame extends React.Component<IFrameProps, object> {
|
||||||
@autobind
|
@autobind
|
||||||
onLoad() {
|
onLoad() {
|
||||||
const {src, data} = this.props;
|
const {src, data} = this.props;
|
||||||
src && this.postMessage('load', data);
|
src && this.postMessage('init', data);
|
||||||
}
|
}
|
||||||
|
|
||||||
// 当别的组件通知 iframe reload 的时候执行。
|
// 当别的组件通知 iframe reload 的时候执行。
|
||||||
|
|
Loading…
Reference in New Issue