避免列表还未生成
This commit is contained in:
38
demo.html
Normal file
38
demo.html
Normal file
@@ -0,0 +1,38 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>demo</title>
|
||||
</head>
|
||||
<body>
|
||||
<script type="module">
|
||||
import GUN from 'gun'
|
||||
import SEA from 'gun/sea'
|
||||
|
||||
const gun = GUN({
|
||||
peers: ['http://localhost:8000/gun'],
|
||||
localStorage: false
|
||||
})
|
||||
|
||||
gun.get('text').once((node) => {
|
||||
console.log("Receiving Initial Data")
|
||||
console.log(node)
|
||||
})
|
||||
|
||||
gun.get('text').put({
|
||||
text: 'Hello World'
|
||||
})
|
||||
|
||||
gun.get('text').on((node) => {
|
||||
console.log("Receiving Update")
|
||||
console.log(node)
|
||||
})
|
||||
|
||||
document.addEventListener('click', () => {
|
||||
gun.get('text').put({
|
||||
text: 'Hello World'
|
||||
})
|
||||
})
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user