[add] EventBus使用 雙向溝通
This commit is contained in:
parent
cf95786b9c
commit
7d4efe136f
@ -21,21 +21,28 @@ export default class HelloWorld extends cc.Component {
|
|||||||
|
|
||||||
// LIFE-CYCLE CALLBACKS:
|
// LIFE-CYCLE CALLBACKS:
|
||||||
|
|
||||||
// protected onLoad() {}
|
protected onLoad() {
|
||||||
|
let self = this;
|
||||||
|
this.Label.string = this.Text;
|
||||||
|
window["eventBus"].on('SendContent', (content: string) => {
|
||||||
|
self.Label.string = content;
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
public onClickBtn() {
|
public onClickBtn() {
|
||||||
let url: string = window.location.search;
|
window["eventBus"].emit("Alert", "hello");
|
||||||
let URLscheme: any[] = [];
|
// let url: string = window.location.search;
|
||||||
if (url.indexOf("?") !== -1) {
|
// let URLscheme: any[] = [];
|
||||||
let str = url.substring(1);
|
// if (url.indexOf("?") !== -1) {
|
||||||
let strs = str.split("&");
|
// let str = url.substring(1);
|
||||||
for (let i = 0; i < strs.length; i++) {
|
// let strs = str.split("&");
|
||||||
URLscheme[strs[i].split("=")[0]] = decodeURI(strs[i].split("=")[1]);
|
// for (let i = 0; i < strs.length; i++) {
|
||||||
}
|
// URLscheme[strs[i].split("=")[0]] = decodeURI(strs[i].split("=")[1]);
|
||||||
}
|
// }
|
||||||
if (URLscheme["host"]) {
|
// }
|
||||||
opener?.window.parent.postMessage({ data: "hello" }, URLscheme["host"]);
|
// if (URLscheme["host"]) {
|
||||||
window.close();
|
// opener?.window.parent.postMessage({ data: "hello" }, URLscheme["host"]);
|
||||||
}
|
// window.close();
|
||||||
|
// }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
103781
Project/build-templates/web-mobile/cocos2d-js.js
Normal file
103781
Project/build-templates/web-mobile/cocos2d-js.js
Normal file
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -7,9 +7,13 @@
|
|||||||
<link href="./src/assets/ZenMaruGothic-Regular.ttf" rel="stylesheet">
|
<link href="./src/assets/ZenMaruGothic-Regular.ttf" rel="stylesheet">
|
||||||
<!-- <link href="https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic&display=swap" rel="stylesheet"> -->
|
<!-- <link href="https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic&display=swap" rel="stylesheet"> -->
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
<title>BJ_ServerState</title>
|
<title>cocos-vue-demo</title>
|
||||||
<script type="module" crossorigin src="./assets/index.12a12ee9.js"></script>
|
<script src="./static/js/EventBus.js" charset="utf-8"></script>
|
||||||
<link rel="stylesheet" href="./assets/index.b312efde.css">
|
<script src="./static/cocos-build/web-mobile/src/settings.js"></script>
|
||||||
|
<script src="./static/cocos-build/web-mobile/cocos2d-js.js"></script>
|
||||||
|
<!-- <script src="./static/cocos-build/web-mobile/main.js"></script> -->
|
||||||
|
<script type="module" crossorigin src="./assets/index.a0e31fb5.js"></script>
|
||||||
|
<link rel="stylesheet" href="./assets/index.2f5031fd.css">
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
13
src/App.vue
13
src/App.vue
@ -5,17 +5,20 @@ import 'vue-loading-overlay/dist/vue-loading.css';
|
|||||||
import GameCanvas from './components/GameCanvas.vue';
|
import GameCanvas from './components/GameCanvas.vue';
|
||||||
import Popup from './components/Popup.vue';
|
import Popup from './components/Popup.vue';
|
||||||
|
|
||||||
const visible = ref(false)
|
const PopupVisible = ref(false)
|
||||||
|
const self = {
|
||||||
|
PopupVisible: PopupVisible
|
||||||
|
};
|
||||||
|
|
||||||
window["eventBus"].on('alert', (msg: string) => {
|
window["eventBus"].on('Alert', (msg: string) => {
|
||||||
visible.value = true;
|
PopupVisible.value = true;
|
||||||
})
|
})
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<GameCanvas />
|
<GameCanvas />
|
||||||
<el-dialog v-model="visible" :show-close="false">
|
<el-dialog v-model="PopupVisible" :show-close="false">
|
||||||
<Popup />
|
<Popup :APP="self" />
|
||||||
</el-dialog>
|
</el-dialog>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
@ -2,10 +2,17 @@
|
|||||||
import { ref } from 'vue';
|
import { ref } from 'vue';
|
||||||
import 'vue-loading-overlay/dist/vue-loading.css';
|
import 'vue-loading-overlay/dist/vue-loading.css';
|
||||||
|
|
||||||
|
const props = defineProps<{ APP: any }>()
|
||||||
|
|
||||||
const input = ref('')
|
const input = ref('')
|
||||||
|
function Send(content: string) {
|
||||||
|
window["eventBus"].emit("SendContent", content);
|
||||||
|
props.APP.PopupVisible.value = false;
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<el-input v-model="input" placeholder="Please input A" />
|
<el-input v-model="input" placeholder="Please input Label" />
|
||||||
<el-input v-model="input" placeholder="Please input B" />
|
<el-button type="primary" @click.native="() => { Send(input) }" size="large" round>確定
|
||||||
|
</el-button>
|
||||||
</template>
|
</template>
|
@ -67,24 +67,15 @@ window.__require = function e(t, n, r) {
|
|||||||
_this.Btn = null;
|
_this.Btn = null;
|
||||||
return _this;
|
return _this;
|
||||||
}
|
}
|
||||||
|
HelloWorld.prototype.onLoad = function() {
|
||||||
|
var self = this;
|
||||||
|
this.Label.string = this.Text;
|
||||||
|
window["eventBus"].on("SendContent", function(content) {
|
||||||
|
self.Label.string = content;
|
||||||
|
});
|
||||||
|
};
|
||||||
HelloWorld.prototype.onClickBtn = function() {
|
HelloWorld.prototype.onClickBtn = function() {
|
||||||
var url = window.location.search;
|
window["eventBus"].emit("Alert", "hello");
|
||||||
var URLscheme = [];
|
|
||||||
if (-1 !== url.indexOf("?")) {
|
|
||||||
var str = url.substring(1);
|
|
||||||
var strs = str.split("&");
|
|
||||||
for (var i = 0; i < strs.length; i++) URLscheme[strs[i].split("=")[0]] = decodeURI(strs[i].split("=")[1]);
|
|
||||||
}
|
|
||||||
// if (URLscheme["host"]) {
|
|
||||||
if (window.location.host) {
|
|
||||||
// null === opener || void 0 === opener ? void 0 : opener.window.parent.postMessage({
|
|
||||||
// window.frames.postMessage({
|
|
||||||
// data: "hello"
|
|
||||||
// }, window.location.host);
|
|
||||||
// window.close();
|
|
||||||
window.eventBus.emit("alert", "hello");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
__decorate([ property(cc.Label) ], HelloWorld.prototype, "Label", void 0);
|
__decorate([ property(cc.Label) ], HelloWorld.prototype, "Label", void 0);
|
||||||
__decorate([ property ], HelloWorld.prototype, "Text", void 0);
|
__decorate([ property ], HelloWorld.prototype, "Text", void 0);
|
||||||
|
Loading…
Reference in New Issue
Block a user