File size: 1,122 Bytes
936e0a7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
// ----------------------------------------------------
// Just copy/paste these functions as-is:
// 获取 URL 参数
const urlParams = new URLSearchParams(window.location.search);
// 获取指定参数的值
const componentId = urlParams.get('componentId');
function init() {
sendMessageToStreamlitClient("componentReady", {msg: "ready"});
}
function sendMessageToStreamlitClient(type, data) {
var outData = Object.assign({
componentId:componentId,
isSSMessage: true,
_type: type,
}, data);
window.parent.postMessage(outData, "*");
}
// The `data` argument can be any JSON-serializable value.
function sendDataToPython(data) {
sendMessageToStreamlitClient("setComponentValue", data);
}
// Hook things up!
//window.addEventListener("message", onDataFromPython);
init();
function setFrameHeight(height) {
sendMessageToStreamlitClient("setFrameHeight", {height: height});
}
// Hack to autoset the iframe height.
window.addEventListener("load", function() {
window.setTimeout(function() {
setFrameHeight(document.documentElement.clientHeight)
}, 0);
}); |