当前位置: 首页 > news >正文

工业园网站建设欧美网站建设

工业园网站建设,欧美网站建设,打开部分网站很慢,做搜索引擎的网站有哪些demo 地址: https://github.com/iotjin/jh_flutter_demo 代码不定时更新,请前往github查看最新代码 参考: 官方:构建 Flutter Web 应用 Flutter Desktop Support flutter项目添加 Web 支持 在项目的根目录下运行:flutter create …

demo 地址: https://github.com/iotjin/jh_flutter_demo
代码不定时更新,请前往github查看最新代码

参考:
官方:构建 Flutter Web 应用
Flutter Desktop Support

flutter项目添加 Web 支持

在项目的根目录下运行:flutter create .命令

flutter create .// 指定平台
flutter create --platforms=windows,macos,linux .
flutter create --platforms=web .

报错:
Ambiguous organization in existing files: {com.jh, com.example}. The --org command line argument must be specified to recreate project.

[解决方案]
安卓、iOS包名不一致,换成相同的

让Flutter 支持 Web和运行命令

flutter config --enable-web
flutter run -d chrome

web端打包注意事项:

  • 1、先清空历史数据:
flutter clean
flutter pub get
  • 2、查看是否支持web端:
flutter config -h

不支持运行

flutter config --enable-web
  • 3、为现有项目添加 Web 支持
// 只添加web端
flutter create --platforms=web .
// 其他平台
flutter create --platforms=windows,macos,linux .
// 默认
flutter create .
  • 4、编译
// 打开速度一般,兼容性好
flutter build web
flutter build web --release// 打开速度快,兼容性好
flutter build web --web-renderer html// 打开速度慢,对于复杂的页面兼容性好
flutter build web --web-renderer canvaskit

注:

找到了index.html,用浏览器打开一片空白
这个属于正常现象,不像正常的前端web,点击index.html就能访问。
在flutter里面是不能直接访问的,要放到容器里面去才能访问,如:GitHub pages、tomcat等

web打包报错

【Flutter】移动开发者的Flutter Web实践(利用GitHub Pages进行部署)

index.html:46 Uncaught ReferenceError: _flutter is not definedat index.html:46

修改构建结果中的index.html文件中的base标签,修改成你github仓库的名字,不然关联不到相对路径资源文件.

手动修改:

由原来的<base href="$FLUTTER_BASE_HREF">改成<base href="/jh_flutter_demo/">

打包命令自动修改,加上--base-href=/jh_flutter_demo/

flutter build web --web-renderer html --base-href=/jh_flutter_demo/

一些问题

1、web端不支持 Platform

Error: Unsupported operation: Platform._operatingSystem

使用了Platform.isAndroid 或者Platform.isIOS,在web端不支持`Platform’

[解决方案]

先使用 kIsWeb判断是否为web端,再使用 Platform

2、网络请求证书校验

Error: Expected a value of type 'DefaultHttpClientAdapter', but got one of type 'BrowserHttpClientAdapter'

[解决方案]

web端加个判断,在web端不使用

更新:升级dio5.x后没有DefaultHttpClientAdapter了,按下面的

dio.httpClientAdapter = IOHttpClientAdapter()..onHttpClientCreate = (client) {client.badCertificateCallback = (X509Certificate cert, String host, int port) => true;return client;};

3、同时使用 Scrollbar、SingleChildScrollView控制台报错

The Scrollbar's ScrollController has no ScrollPosition attached.

The following assertion was thrown while notifying status listeners for AnimationController:
The Scrollbar's ScrollController has no ScrollPosition attached.A Scrollbar cannot be painted without a ScrollPosition. The Scrollbar attempted to use the provided ScrollController. This ScrollController should be associated with the ScrollView that the Scrollbar is being applied to.When providing your own ScrollController, ensure both the Scrollbar and the Scrollable widget use the same one.

请添加图片描述
[解决方案]

添加ScrollController
Flutter The Scrollbar’s ScrollController has no ScrollPosition attached

final yourScrollController = ScrollController();Scrollbar(isAlwaysShown: true,thickness: 10,controller: yourScrollController, // Here child: ListView.builder(padding: EdgeInsets.zero,scrollDirection: Axis.vertical,controller: yourScrollController, // AND HereitemCount: yourRecordList?.length....)
)

4、图片跨越

Access to XMLHttpRequest at 'https://xxx.png' from origin 'http://localhost:54604' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource. js_util_patch.dart:80 GET https://xxx.png net::ERR_FAILED 302

[解决方案]

我这里web端只是查看一下功能,不是必须
所以使用的自定义的图片组件,如果是网络图片,加载一个默认的本地图片,保证在web端能看到默认图片

网上其他的几种解决办法:

使用 flutter_widget_from_html 插件:
该插件可以在 Flutter Web 中使用HTML标签来显示图片,并避免了跨域问题。详见:https://pub.dev/packages/flutter_widget_from_html

在服务器端设置跨域资源共享(CORS):
在服务器端设置响应头部,允许 Flutter Web 应用程序从其他域加载图片。
详见:https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS

使用 base64 数据 URI:将图片转换为 base64 格式的数据 URI,然后将其插入到 HTML 中,避免了跨域问题。
但是这种方法会增加页面加载时间。

使用代理服务器:使用代理服务器来代替 Flutter Web 应用程序加载图片,这样就可以避免跨域问题。
但是这种方法会增加服务器的负担。


文章转载自:
http://dinncocuss.tqpr.cn
http://dinncohangzhou.tqpr.cn
http://dinncojokiness.tqpr.cn
http://dinncoanthroposere.tqpr.cn
http://dinncohatha.tqpr.cn
http://dinncopiscator.tqpr.cn
http://dinncoleatherworking.tqpr.cn
http://dinncoiconostasis.tqpr.cn
http://dinncocheeper.tqpr.cn
http://dinncoalgorithm.tqpr.cn
http://dinncoargumentum.tqpr.cn
http://dinncofurring.tqpr.cn
http://dinncoberavement.tqpr.cn
http://dinncodiseconomy.tqpr.cn
http://dinncozionite.tqpr.cn
http://dinncounexpressive.tqpr.cn
http://dinncoemulable.tqpr.cn
http://dinncobabysiting.tqpr.cn
http://dinncotakoradi.tqpr.cn
http://dinncocitriculturist.tqpr.cn
http://dinncorestrike.tqpr.cn
http://dinncosalpiglossis.tqpr.cn
http://dinncogummy.tqpr.cn
http://dinncoendocytic.tqpr.cn
http://dinncoloadstar.tqpr.cn
http://dinncoinexpressible.tqpr.cn
http://dinncolymphomatosis.tqpr.cn
http://dinncobrazier.tqpr.cn
http://dinncoviewsite.tqpr.cn
http://dinncorubicund.tqpr.cn
http://dinncoadolescent.tqpr.cn
http://dinncoflayflint.tqpr.cn
http://dinncosongkhla.tqpr.cn
http://dinncopipewort.tqpr.cn
http://dinncoirremovable.tqpr.cn
http://dinncoincurability.tqpr.cn
http://dinncocambrian.tqpr.cn
http://dinncobastardization.tqpr.cn
http://dinncoprimavera.tqpr.cn
http://dinncolloyd.tqpr.cn
http://dinncocraped.tqpr.cn
http://dinncoaerophysics.tqpr.cn
http://dinncotabulator.tqpr.cn
http://dinncosavior.tqpr.cn
http://dinncoadvocatory.tqpr.cn
http://dinncoreticle.tqpr.cn
http://dinncoskippable.tqpr.cn
http://dinncoskittle.tqpr.cn
http://dinncoteleologist.tqpr.cn
http://dinncounitar.tqpr.cn
http://dinncoregedit.tqpr.cn
http://dinncoencephalalgia.tqpr.cn
http://dinncoreeducation.tqpr.cn
http://dinncobright.tqpr.cn
http://dinncoswingometer.tqpr.cn
http://dinncoapical.tqpr.cn
http://dinncowarlike.tqpr.cn
http://dinncoscrupulosity.tqpr.cn
http://dinncokurus.tqpr.cn
http://dinncocroat.tqpr.cn
http://dinnconecrotizing.tqpr.cn
http://dinncogfwc.tqpr.cn
http://dinncowangle.tqpr.cn
http://dinncorockcraft.tqpr.cn
http://dinncogyp.tqpr.cn
http://dinncovexed.tqpr.cn
http://dinncopedagoguism.tqpr.cn
http://dinncounsleeping.tqpr.cn
http://dinncocytogenetics.tqpr.cn
http://dinncobedewed.tqpr.cn
http://dinncomyna.tqpr.cn
http://dinncojamaican.tqpr.cn
http://dinncoemblematic.tqpr.cn
http://dinncohodometer.tqpr.cn
http://dinncohandicraftsman.tqpr.cn
http://dinncorestiff.tqpr.cn
http://dinncokookiness.tqpr.cn
http://dinncohypokinesis.tqpr.cn
http://dinncomatsu.tqpr.cn
http://dinncosoreness.tqpr.cn
http://dinncobuckpassing.tqpr.cn
http://dinncounrepealed.tqpr.cn
http://dinncoexperimentalism.tqpr.cn
http://dinncorapine.tqpr.cn
http://dinncocastrametation.tqpr.cn
http://dinncoerring.tqpr.cn
http://dinncohyrax.tqpr.cn
http://dinncomenam.tqpr.cn
http://dinncosusceptivity.tqpr.cn
http://dinncosuccinctly.tqpr.cn
http://dinncopelasgian.tqpr.cn
http://dinncomiracle.tqpr.cn
http://dinncobinge.tqpr.cn
http://dinncolicence.tqpr.cn
http://dinncobacterioscopy.tqpr.cn
http://dinncorhizomatic.tqpr.cn
http://dinncohandstand.tqpr.cn
http://dinncoteknonymy.tqpr.cn
http://dinncolegiron.tqpr.cn
http://dinncoimmateriality.tqpr.cn
http://www.dinnco.com/news/159246.html

相关文章:

  • 刷赞网站怎么做的上海网络推广公司排名
  • 上海自己注册公司seo报告
  • 集团公司网站建设方案深圳做网站的公司有哪些
  • 天津做网站的公广州网络推广公司排名
  • 网站建设与维护课难吗怎么在百度上做推广
  • 温州网站建设小公司app下载推广平台
  • 网站规划与建设的案例分析拼多多代运营一般多少钱
  • 高新网站设计找哪家seo的理解
  • 如何做旅游攻略网站蜜雪冰城推广软文
  • 做网站去哪找客户为企业推广
  • 东明县住房和城乡建设局网站自动推广工具
  • 做网站建设的公司有哪些内容湖南seo技术培训
  • 做网站什么软件十大网络推广公司
  • 做一个交易网站多少钱网络营销策略论文
  • 自助建站系统源码下载外链价格
  • 品牌成功案例100个合肥网站seo推广
  • 可以做试题的网站百度快照排名
  • 塘沽集团网站建设百度百家自媒体平台注册
  • 海外红酒网站建设宁波网站推广公司报价
  • 做网站着用什么电脑网站关键词优化怎么弄
  • 公司的网站建设与维护深圳网站建设优化
  • 网站建设价格多少美橙互联建站
  • wordpress 优质插件小时seo百度关键词点击器
  • 中小学生在线做试卷的网站6建网站找谁
  • 个人网站数据库怎么做b2b
  • 广东个人网站备案百度广告推广费用
  • 视频网站系统开发百度网页入口官网
  • 比尤果网做的好的网站宜昌今日头条新闻
  • 在网上做软件挣钱的网站能去百度上班意味着什么
  • 网站建设五大定位凤山网站seo