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

快应用WebView加载不出页面 #4129

Closed
loveshuffle opened this issue Aug 9, 2019 · 3 comments
Closed

快应用WebView加载不出页面 #4129

loveshuffle opened this issue Aug 9, 2019 · 3 comments

Comments

@loveshuffle
Copy link

loveshuffle commented Aug 9, 2019

问题描述
WebView加载不出url

复现步骤
import Taro, { Component } from '@tarojs/taro'
import { View, Text, WebView } from '@tarojs/components'
import './index.scss'

export default class NewsVideo extends Component {

constructor () {
    super()
    this.state = {
        videoUrl: 'https://huaban.com/'
    }
}
componentWillMount () { }

componentDidMount () {}


render () {
    const {videoUrl} = this.state;
    return (
        <WebView src={videoUrl} />
    )
}

}

期望行为
能加载出url

系统信息

  • 操作系统: [e.g. Windows 10]
  • Taro 版本 [e.g. v.1.3.12]
  • Node.js 版本 [e.g. v10.13.0]

补充信息
quickapp.json文件已配置了system.webview,在别的项目可以加载出url

@taro-bot
Copy link

taro-bot bot commented Aug 9, 2019

欢迎提交 Issue~

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

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

Good luck and happy coding~

@jinjinjin0731
Copy link
Contributor

没有复现,可以正常加载出页面

import Taro, { Component } from '@tarojs/taro'
import { WebView  } from '@tarojs/components'

export default class Index extends Component {
  constructor () {
    super()
    this.state = {
        videoUrl: 'https://huaban.com/'
    }
}

  componentWillMount() {}

  componentDidMount() {}

  componentWillUnmount() {}

  componentDidShow() {}

  componentDidHide() {}

  render () {
    const {  videoUrl  } = this.state;
    return (
        <WebView src={videoUrl} />
    )
  }
}

1091565612579_ pic_hd

@taro-bot
Copy link

taro-bot bot commented Aug 12, 2019

Hello~

您的问题我们无法复现。如果有空的话还请拔冗提供一个简单的复现 demo,否则这个 issue 将在 15 天后被自动关闭。

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

Good luck and happy coding~

@taro-bot taro-bot bot removed the to be closed label Aug 27, 2019
@taro-bot taro-bot bot closed this as completed Aug 27, 2019
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

3 participants