1 2 3 4 5 6 7 8 9 10 11 | if (categoryName){ _product.saveCategory({ parentId : this .state.parentId, categoryName : categoryName }).then((res) => { _mm.successTips(res); this .props.history.push( '/product-category/index' ); }, (errMsg) => { _mm.errorTips(errMsg); }); } |
this.props.history.push('/product-category/index') 如果换成window.location.href = '/product-category/index' 也是可以的,不知道老师推荐用哪个?