reactjs

    0熱度

    1回答

    我正在創建一個簡單的反應應用程序,需要使用給定的URL播放音樂。 我試圖用硬編碼的音樂網址進行測試,並使用<audio>標籤來播放音樂,就像我們在HTML中一樣。 class Music extends React.Component { render() { return ( <span> <audio src="URL"> </span>

    1熱度

    1回答

    我想將道具發送到DollarView組件,但由於未知原因它失敗。測試這個問題我用了一個警報顯示DollarView組件的dollarValue道具(我用這行代碼在DollarView組件:Alert.alert(this.props.dollarValue.toString());),但在應用程序刷新,整個應用程序停止,我得到這個錯誤: TypeError: undefined is not an

    1熱度

    1回答

    我不確定什麼時候我的data.json返回奇怪的文本時,我叫它什麼是錯的。 axios.get('./data.json').then(resp => { console.log(resp) console.log(resp.data) }) 試過JSON.parse(resp)它似乎不工作。 https://codesandbox.io/s/306ynznk

    0熱度

    1回答

    console.log(bankStore.getState().balance); 當我記錄這個,我得到0預期。 然後我有傳遞道具<BankApp />組分(如我明白)容器: const mapStateToProps = state => { return { balance: state.balance }; }; const mapDispatchTo

    1熱度

    1回答

    我寫了一個時間倒計時組件: class CountDown extends React.Component { constructor(props) { super(props) const {target} = this.props this.state = { target, } } componentDidMo

    0熱度

    1回答

    有數組中的一些對象是這樣的: const result = [ { "_id": "Dn59y87PGhkJXpaiZ", "title": "Something", "synonyms": [ "Anything", "else" ] }, { ... } ] 我通過執行該得到這樣的結果: Content.find({

    0熱度

    2回答

    我使用express作爲後端。我在後端實施了Facebook身份驗證。 router.get('/login/facebook', passport.authenticate('facebook',{scope:['email']})); router.get('/login/facebook/callback', passport.authenticate('facebo

    0熱度

    2回答

    React和Redux專家。 我是React和Redux的新手。當Redux狀態改變時,我的問題與觸發回調(函數)調用有關。我陷入這個實現。在我的理解中,主持人/觀點通過道具更新。讓我在下面的例子中進一步說明。 <ParentComponent>         <Child1Component/>         <Child2Component/> </ParentComponent> cla

    0熱度

    2回答

    我通過在React應用改變redux狀態處理404 error,所以如果有一個error,我更新state.error到404,我render取決於狀態的組件。這個display()函數在我的React容器裏面。 display() { const { weather: { weathers } } = this.props; const error = this.prop

    0熱度

    2回答

    我想在我的反應導航標題中調用自定義按鈕內的自定義函數。我看着周圍的幾個方法可以做到這一點,我已經找到了最好的結果是使功能靜態的,那就是:但是 export class MyClass extends React.Component{ static navigationOptions = ({navigation}) => ({ headerRight: (<Button ti