第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

如何將不帶引號(hào)的數(shù)據(jù)從我的網(wǎng)站添加到 firebase

如何將不帶引號(hào)的數(shù)據(jù)從我的網(wǎng)站添加到 firebase

明月笑刀無(wú)情 2022-12-29 15:30:16
使用此代碼,我可以將數(shù)據(jù)庫(kù)添加到 firebase,但在我的經(jīng)度和緯度中使用引號(hào)我想在我的經(jīng)度和緯度中不帶引號(hào)的情況下將數(shù)據(jù)庫(kù)添加到 firebase 這樣我的地圖將讀取經(jīng)度緯度而無(wú)需手動(dòng)刪除firebase中的引號(hào)謝謝.....var dbRef= firebase.database().ref('/users /' + userId.value);var bounds = new google.maps.LatLngBounds();dbRef.on('value', function(snapshot) {snapshot.forEach(function(child) {var data=child.val();console.log(data);var marker = new google.maps.Marker({    position: { lat: data.lat,        lng: data.lng    },    map: map});bounds.extend(marker.getPosition());marker.addListener('click', (function(data) {    return function(e) {        infowindow.setContent( data.first_name + "<br>" + data.last_name + "<br>" + data.age + " <br>" + data.symptom + "<br>" + this.getPosition().toUrlValue(6) );        infowindow.open(map, this);    }}(data)));map.fitBounds(bounds); });});}google.maps.event.addDomListener(window, "load", initialize);const database = firebase.database();addBtn.addEventListener('click' , (e) => {    e.preventDefault();    database.ref('/users /' + userId.value).set({        first_name: firstName.value,        last_name: lastName.value,        age: age.value,        symptom: symptom.value,        lat: lat.value,        lng: lng.value,    });});
查看完整描述

1 回答

?
有只小跳蛙

TA貢獻(xiàn)1824條經(jīng)驗(yàn) 獲得超8個(gè)贊

試試這個(gè)。


    database.ref('/users /' + userId.value).set({

        first_name: firstName.value,

        last_name: lastName.value,

        age: age.value,

        symptom: symptom.value,

        lat: parseInt(lat.value),

        lng: parseInt(lng.value),

    });

推送數(shù)據(jù)時(shí),firebase 直接將"data"字符串保存為 as。明確解析它可能會(huì)解決您的問(wèn)題。


查看完整回答
反對(duì) 回復(fù) 2022-12-29
  • 1 回答
  • 0 關(guān)注
  • 106 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)