内部开发,不要选择第三方企业应用
小程序开发者工具需要使用钉钉登录,在登录的时候需要切换到对应的企业,点击工作顶级顶部的公司名称切换,然后重启工具,不然会失败
1: 获取免登陆authcode
dd.getAuthCode({
success(res){
console.log(res.authCode)
my.showLoading({ content: '登陆中' })
setTimeout(() => {
my.hideLoading()
// 设置web页面
dd.redirectTo({
url: '../main/main?userid=' + res.authCode
})
}, 2e3)
},
fail(err){
console.log(err)
}
})
main.js
<web-view src="" />
src需要配置安全域名,在
路由导航API见: https://open-doc.dingtalk.com/microapp/dev/ui-navigate
参数接收见: https://open-doc.dingtalk.com/microapp/dev/framework-page#page
网友评论