当用户从iOS系统设置中禁用Wifi时,我的应用会显示本地通知。但它显示' n'如果用户打开和关闭Wifi的通知数量,那么' n'次数。
我希望仅在以前的通知被清除或用户点击相同内容时才显示新通知以启动应用。
我怎样才能实现这个目标?
先谢谢。
答案 0 :(得分:1)
在安排新通知之前,您应该致电import React from 'react';
class MyComponent extends React.Component {
constructor(props) {
super(props);
this.backPressed = this.backPressed.bind(this);
}
backPressed() {
this.context.router.push('/back-location');
}
...
}
MyComponent.contextTypes = {
router: React.PropTypes.object.isRequired
};
export default MyComponent;
。它将取消您的通知,用户只会收到一个通知。
有关详情this。