我正在尝试实现到我的本机应用程序的深层链接。 问题是我的应用程序在后台运行时尝试打开链接时出现错误,错误是
未定义不是对象(正在评估“ this.props”)
如果我的应用程序不在后台(该应用程序未在运行),效果很好
我的初始路由是应用程序,在重定向到特定路由之前,该应用会显示约2.5秒的启动画面,具体取决于用户是否登录,如果用户登录,它将重定向至主路由,否则将重定向至主路由。
这是我的应用路线
function mapStateToProps (state) {
return {
deviceVersion: state.device.version,
auth: {
form: {
isFetching: state.auth.form.isFetching
}
},
global: state.global,
search: state.search
}
}
function mapDispatchToProps (dispatch) {
return {
actions: bindActionCreators({ ...authActions, ...deviceActions, ...globalActions, ...searchActions }, dispatch)
}
}
var reactMixin = require('react-mixin')
import TimerMixin from 'react-timer-mixin'
我的componentDidMount函数
componentDidMount () {
this.setTimeout(
() => {
this.props.actions.getSessionToken()
this.props.actions.setHeight(height)
this.props.actions.getIp()
this.props.actions.getUniqueId()
this.props.actions.getLanguage()
},
2500
)
渲染功能
render () {
return (
<View style={styles.container}>
<StatusBar
backgroundColor="#b33939"
/>
<View style={{flex:1}}>
<Header isFetching={this.props.auth.form.isFetching}
showState={this.props.global.showState}
currentState={this.props.global.currentState}
onGetState={this.props.actions.getState}
onSetState={this.props.actions.setState} />
</View>
<View style={{flex:1}}>
<Text style={styles.summary}>Welcome</Text>
</View>
</View>
)
}
}
reactMixin(App.prototype, TimerMixin)
export default connect(mapStateToProps, mapDispatchToProps)(App)
当我实现Deeplink时,我将Linking Listener添加到我的componentDidMount函数中以处理url,并在超时内将一些动作移到handleOpenURL函数中
componentDidMount () {
Linking.getInitialURL()
.then(url => this.handleOpenURL({ url }))
.catch(console.error);
Linking.addEventListener('url', this.handleOpenURL);
}
handleOpenURL函数看起来像这样
handleOpenURL(event) {
console.log('URL', event)
if(!_.isNull(event.url))
{
var url = event.url
var removeDomain = url.replace("https://www.example.com/", "")
console.log(removeDomain)
var lastChar = removeDomain[removeDomain.length -1];
if(lastChar != '/')
{
var data = removeDomain.split("/")
if(data[0] == 'listing')
{
this.props.actions.openListingDetail(data[1], null)
}
}
}else{
this.setTimeout(
() => {
this.props.actions.getSessionToken()
this.props.actions.setHeight(height)
this.props.actions.getIpAdd()
this.props.actions.getUniqueId()
this.props.actions.getLanguage()
},
2500
)
}
}
getSessionToken函数用于检查用户是否登录。 我正在使用反应路由器通量
如果该应用当前未运行,则可以正常运行。网址公开列表路线正确。
如果正常打开而没有深层链接url,这也可以正常工作。
但是当应用程序在后台运行时出现错误,它无法执行this.props.actions.openListingDetail(data[1], null)
错误消息
未定义不是对象(正在评估“ this.props”)
android:launchMode="singleTask"
有什么想法吗?
答案 0 :(得分:3)
似乎您正在将方法作为静态函数传递给import pandas as pd
。您可以尝试以下方法:
addEventListener
希望这会有所帮助。