Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

支付宝小程序真机调试或体验版中,分包页面中的请求,没有走请求拦截器。 #6129

Closed
wxttt opened this issue Apr 27, 2020 · 4 comments
Assignees

Comments

@wxttt
Copy link

wxttt commented Apr 27, 2020

问题描述

在真机预览或者查看支付宝小程序体验版的时候,分包页面中的请求会忽略拦截器的处理。
主包页面中的请求,或者在开发者工具中表现正常。

复现步骤

  • 在app.js 中通过Taro.addInterceptor()方法添加全局的请求拦截
  • 在分包中通过Taro.request发起请求
  • 在真机调试或者打包成体验版后,发现拦截器的逻辑没有被执行,本地调试和预览表现正常。
// interceptor-manager.js 中统一维护拦截器逻辑
const interceptorManager = {
  init() {
    Taro.addInterceptor(responseInterceptor); // 统一的请求返回值处理
    Taro.addInterceptor(queryInterceptor); // 统一的query参数处理
    Taro.addInterceptor(sessionInterceptor); // 请求中带上用户session
  }
};

export default interceptorManager;

// app.js中添加拦截器
interceptorManager.init();

期望行为

拦截器逻辑被正常执行

报错信息

系统信息

Taro CLI 1.3.27 environment info:
System:
OS: macOS 10.14.4
Shell: 5.3 - /bin/zsh
Binaries:
Node: 8.11.4 - ~/.nvm/versions/node/v8.11.4/bin/node
npm: 5.6.0 - ~/.nvm/versions/node/v8.11.4/bin/npm
npmPackages:
@tarojs/async-await: 1.3.27 => 1.3.27
@tarojs/components: 1.3.27 => 1.3.27
@tarojs/plugin-babel: 1.3.27 => 1.3.27
@tarojs/plugin-csso: 1.3.27 => 1.3.27
@tarojs/plugin-less: 1.3.27 => 1.3.27
@tarojs/plugin-sass: 1.3.27 => 1.3.27
@tarojs/plugin-uglifyjs: 1.3.27 => 1.3.27
@tarojs/redux: 1.3.27 => 1.3.27
@tarojs/redux-h5: 1.3.27 => 1.3.27
@tarojs/router: 1.3.27 => 1.3.27
@tarojs/taro: 1.3.27 => 1.3.27
@tarojs/taro-alipay: 1.3.27 => 1.3.27
@tarojs/taro-h5: 1.3.27 => 1.3.27
@tarojs/taro-weapp: 1.3.27 => 1.3.27
@tarojs/webpack-runner: 1.3.27 => 1.3.27
eslint-config-taro: 1.3.27 => 1.3.27
eslint-plugin-taro: 1.3.27 => 1.3.27
nervjs: ^1.5.6 => 1.5.6

补充信息

@taro-bot
Copy link

taro-bot bot commented Apr 27, 2020

CC @Chen-jj

@taro-bot
Copy link

taro-bot bot commented Apr 27, 2020

欢迎提交 Issue~

如果你提交的是 bug 报告,请务必遵循 Issue 模板的规范,尽量用简洁的语言描述你的问题,最好能提供一个稳定简单的复现。🙏🙏🙏

如果你的信息提供过于模糊或不足,或者已经其他 issue 已经存在相关内容,你的 issue 有可能会被关闭。

Good luck and happy coding~

@Chen-jj
Copy link
Contributor

Chen-jj commented May 2, 2020

@wxttt 下个版本 1.3.43 修复

@taro-bot
Copy link

taro-bot bot commented May 2, 2020

Hello~

您的问题楼上已经提供了解决方案,如果没有更多的问题这个 issue 将在 15 天后被自动关闭。

如果您在这 15 天中更新更多信息自动关闭的流程会自动取消,如有其他问题也可以发起新的 Issue。

Good luck and happy coding~

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants