Create a javascript starter app with ionic 2 rather than a typescript app(使用 ionic 2 而不是 typescript 应用程序创建一个 javascript starter 应用程序)
问题描述
我正在尝试创建一个 JS 入门项目,但 ionic start xxx --v2
创建了一个打字稿项目.
I am trying to create a JS starter project but ionic start xxx --v2
creates a typescript project.
我需要创建一个 JS 启动项目,以便可以将现有的 JS ionic 2 应用程序复制到全新安装中.
I need to create a JS starter project so I can copy across an existing JS ionic 2 app to a clean installation.
我确实尝试将我所有的 JS 文件重命名为 typescript,但得到了一些类型的错误消息:
I did try renaming all of my JS files to typescript but a get a shed load of error messages of the type:
类型 yyy 上不存在属性 xxx
Property xxx does not exist on type yyy
推荐答案
就像你可以阅读 离子文档:
Ionic 2 应用程序默认创建为 TypeScript.
Ionic 2 applications are created as TypeScript by default.
想改用 JavaScript 吗?传递 --no-ts
标志并获得一个而是为 JavaScript 设置的项目.
Want to use JavaScript instead? Pass the --no-ts
flag and get a
project set up for JavaScript instead.
所以你需要运行
ionic start xxx --v2 --no-ts
================================
==============================
你是对的.这似乎是文档或 Ionic CLI 中的错误.在这个 commit 你可以看到标题是 remove javascript as an option对于 v2 项目 ... 和 这里 在他们最后的评论中提到一些关于更新文档的事情(因为它说 想改用 JavaScript?传递 --no-ts 标志并为 JavaScript 设置一个项目.).
You're right. It seems to be a bug either in the documentation or in the Ionic CLI. In this commit you can see the title is remove javascript as an option for v2 projects ... and here in the last comment they mention something about updating the docs (because it says Want to use JavaScript instead? Pass the --no-ts flag and get a project set up for JavaScript instead.).
您可以关注此帖子看看 Ionic Team 是否有人回答了这个问题.
You can follow along this post to see if someone from Ionic Team answer about this issue.
==============================
=============================
编辑 2:
刚刚在 ionic-v2
Slack 频道中询问,答案是:
Just asked in ionic-v2
Slack channel and the answer was:
我们将全力以赴.
您可以自己完成工作并将其转换为 es6 工作流程,但我们希望人们使用 typescript
You could do your own work and covert it toa es6 workflow, but we want people to use typescript
这篇关于使用 ionic 2 而不是 typescript 应用程序创建一个 javascript starter 应用程序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用 ionic 2 而不是 typescript 应用程序创建一个 javascript starter 应用程序
- Flexslider 箭头未正确显示 2022-01-01
- 400或500级别的HTTP响应 2022-01-01
- 如何使用 JSON 格式的 jQuery AJAX 从 .cfm 页面输出查 2022-01-01
- 失败的 Canvas 360 jquery 插件 2022-01-01
- Css:将嵌套元素定位在父元素边界之外一点 2022-09-07
- CSS媒体查询(最大高度)不起作用,但为什么? 2022-01-01
- addEventListener 在 IE 11 中不起作用 2022-01-01
- 使用RSelum从网站(报纸档案)中抓取多个网页 2022-09-06
- Fetch API 如何获取响应体? 2022-01-01
- Quasar 2+Apollo:错误:找不到ID为默认的Apollo客户端。如果您在组件设置之外,请使用ProvideApolloClient() 2022-01-01