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

Taro H5 如何引入第三方jssdk #4990

Closed
giantss opened this issue Dec 3, 2019 · 11 comments
Closed

Taro H5 如何引入第三方jssdk #4990

giantss opened this issue Dec 3, 2019 · 11 comments
Assignees

Comments

@giantss
Copy link

giantss commented Dec 3, 2019

Taro H5 如何引入第三方jssdk(链接), 求指教..

@taro-bot
Copy link

taro-bot bot commented Dec 3, 2019

欢迎提交 Issue~

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

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

Good luck and happy coding~

@taro-bot
Copy link

taro-bot bot commented Dec 3, 2019

CC @Littly

@shenghanqin
Copy link
Collaborator

@giantss 可以举例,需要引入那种sdk?
按说跟npm包一样用就行。或者,其他功能在issue上都可以搜搜看,有木有别人的提问。

@taro-bot
Copy link

taro-bot bot commented Dec 3, 2019

Hello~

您的问题所提供的信息不足,我们无法定位到具体的问题。如果有空的话还请拔冗提供更具体的信息,否则这个 issue 将在 15 天后被自动关闭。

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

Good luck and happy coding~

@giantss
Copy link
Author

giantss commented Dec 3, 2019

@shenghanqin 比如导入 https://static.module.watch.okii.com/watch/api/xtcJSBridge.js
应该如何导入 请教一下没有找到相关答案..

@tong233
Copy link

tong233 commented Dec 3, 2019

应该如何导入 请教一下没有找到相关答案..

index.html导入

<script src="https://static.module.watch.okii.com/watch/api/xtcJSBridge.js"></script>

@giantss
Copy link
Author

giantss commented Dec 3, 2019

应该如何导入 请教一下没有找到相关答案..

index.html导入

<script src="https://static.module.watch.okii.com/watch/api/xtcJSBridge.js"></script>

这样引入了怎么在 .jsx 界面中调用呢, 比如对方给的例子是这样的, 如何获得 xxx对象.


xxx.getOpenId({
appId: '39a476cd5cbac50b1ba2435578' ,
// 调试 appId 值为 39a476cd5cbac50b1ba2435578
complete: function (res) { // 回调后执行 (调用成功、失败都会执行)
console.log(res); },
success: function (data) { // 成功回调 console.log(data);
// {"openId":["xxxxxxxxxxx","xxxxxxxxxxx"]}
},
fail: function (data,code) { // 失败回调
console.log(data); }
});

@luckyadam
Copy link
Member

应该如何导入 请教一下没有找到相关答案..

index.html导入

<script src="https://static.module.watch.okii.com/watch/api/xtcJSBridge.js"></script>

这样引入了怎么在 .jsx 界面中调用呢, 比如对方给的例子是这样的, 如何获得 xxx对象.


xxx.getOpenId({
appId: '39a476cd5cbac50b1ba2435578' ,
// 调试 appId 值为 39a476cd5cbac50b1ba2435578
complete: function (res) { // 回调后执行 (调用成功、失败都会执行)
console.log(res); },
success: function (data) { // 成功回调 console.log(data);
// {"openId":["xxxxxxxxxxx","xxxxxxxxxxx"]}
},
fail: function (data,code) { // 失败回调
console.log(data); }
});

直接用啊,这不是全局对象么

@giantss
Copy link
Author

giantss commented Dec 3, 2019

@luckyadam 提示 getJsBridge not find 这种问题会是第三方的jssdk的问题吗? 目前他们的也刚推出, 有不稳定的可能性.

  1. index.html 中导入<script src="https://static.module.watch.okii.com/watch/api/xtcJSBridge.js"></script>

  2. 在界面中调用

xtc.getOpenId({
appId: '39a476cd5cbac50b1ba2435578' ,
// 调试 appId 值为 39a476cd5cbac50b1ba2435578
complete: function (res) { // 回调后执行 (调用成功、失败都会执行)
console.log(res); },
success: function (data) { // 成功回调 console.log(data);
// {"openId":["xxxxxxxxxxx","xxxxxxxxxxx"]}
},
fail: function (data,code) { // 失败回调
console.log(data); }
});
  1. 提示getJsBridge not find

@shenghanqin
Copy link
Collaborator

在eslint里面加一个全局变量,
要是不仅支持h5,还要在小程序里面有别的包的话,就得加一个taro端的判断。
"globals": {
"wx": true,
"tt": true,
"getApp": true,
"getCurrentPages": true
}

@taro-bot
Copy link

taro-bot bot commented Dec 3, 2019

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

5 participants