-2
我nede如果我按下代碼執行每5秒 在其他語言我使用endlis循環 和我把裏面的睡眠功能 這是我的代碼我nede如果我按代碼按每5秒執行
_onPress() {
var ws = new WebSocket('ws://myhost.org:800');
ws.onopen =() => {
// connection opened
ws.send("hi)
ws.close();
};
}
render() {
return (
<View style={styles.container}>
<Button
onPress={this._onPress.bind(this)}
title="open"
color="#841584"
accessibilityLabel="Learn more about this purple button"
/>
</View>
);
}