0
私はこれらの2つの入力ボックスを持っているようです。Web App経由でFirebaseのデータベースにデータを保存中
<input type="button" id="valone">
<input type="button" id="valuetwo">
<button type="submit" onClick="submitB();" id="sbmtbtn">
<script>
const firstval = findViewById="valueone";
const secondval = findViewById="valuetwo";
const submit = findViewById="sbmtbtn";
const first = firstval.value;
const second = secondval.value;
function submitB() {
const firebaseRef = firebase.database().ref().push();
firebaseRef.child("Value").child("Value One").set(first.value);
firebaseRef.child("Value").child("Value Two").set(second.value);
}
しかし、それは.......
ようですが空白でない入力ボックス
の値は、すべての依存関係が設定されている私を助けてくださいこの画像を示しありません正しく動かされ、すべてがかなり上手くいく。
'findViewById'は関数であると思いますか? –