安装ExtJS
我是 ExtJS 的新手。我尝试按照此处给出的步骤安装它。< /code>
但我在运行此命令时遇到一个错误。
sencha create jsb -a http://localhost:8080/helloext/index.html -p app.jsb3
错误消息:
C:\Program Files\Apache 软件 Foundation\Apache2.2\htdocs\helloext>
sencha create jsb -a
http:// /localhost:8080/helloext/index.html -p app.jsb3 'sencha' 不是 被识别为内部或外部命令、可操作程序或 批处理文件。
问题是什么 ?
PS:我已经完成了安装 Apache Server 和解压缩 ExtJS SDK 的先前步骤。
谢谢。
I am new to ExtJS. I tried installing it as per the steps given here.
But I am getting one error while running this command.
sencha create jsb -a http://localhost:8080/helloext/index.html -p app.jsb3
Error msg :
C:\Program Files\Apache Software
Foundation\Apache2.2\htdocs\helloext>sencha create jsb -a
http://localhost:8080/helloext/index.html -p app.jsb3 'sencha' is not
recognized as an internal or external command, operable program or
batch file.
What is the problem ?
PS : I already done with the prior steps of installing Apache Server and unzipping ExtJS SDK.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Windows 未找到
sencha
可执行文件。您确定下载了 Sencha Tools SDK 吗? (当前版本是1.2.3beta)。该教程中的链接显示了一个页面,其中有一个明显的下载 ExtJS 库的链接,以及不太明显的 Sencha SDK 链接。尝试从这里下载并安装此 。然后看看在命令行中输入“sencha”是否会执行一些明智的操作。
Windows is not finding the
sencha
executable.Are you sure you downloaded the Sencha Tools SDK? (Current version is 1.2.3beta). The link from that tutorial shows a page with an obvious link to download the ExtJS library, and less obvious link for the Sencha SDK. Try downloading and installing this from here. Then see if typing "sencha" on the command line does something sensible.
我没有时间阅读教程,但我会让你知道我如何开始使用 extjs。我下载该库并解压文件夹。将文件夹命名为 extjs。然后在我的 webroot 或任何你喜欢的目录中创建一个名为 lib 的目录并将 extjs 放入其中。然后,当我创建 html 文档时,我使用
I dont have time to reaad te tutorial but I will let you know how I get started using extjs. I download the library and extract the folder. Name the folder extjs. Then in my webroot or whatever you prefer I make a directory called lib and place extjs inside of it. Then when i create a html document I reference the library by using
<script type="text/javascript" src="/lib/extjs/ext-all.js></script>
. This is how you can call it up in order to use it. If you have a "app/js" file simply reference it after the example I gave you above so that it is loaded after the ext-all.js file.