1

我一直试图让快速入门工作,但各种 dfx 命令似乎没有生成应用程序所需的必要 html 页面和 css 文件。当您在本地部署容器,然后调用它http://localhost:8000/?canisterId=xxx而不是生成网页时,它只显示 javascript 消息和对话框。

根据快速入门,当你运行时dfx canister install --all,你应该得到一个看起来像的日志

 Installing code for canister explore_hello, with canister_id rrkah-fqaaa-aaaaa-aaaaq-cai
Installing code for canister explore_hello_assets, with canister_id ryjl3-tyaaa-aaaaa-aaaba-cai
Authorizing our identity (pubs-id) to the asset canister...
Uploading assets to asset canister...
  /index.html 1/1 (480 bytes)
  /index.js 1/1 (296836 bytes)
  /main.css 1/1 (484 bytes)
  /sample-asset.txt 1/1 (24 bytes)
  /logo.png 1/1 (25397 bytes)
  /index.js.map 1/1 (964679 bytes)
  /index.js.LICENSE.txt 1/1 (499 bytes)
 

我得到的只是:

Installing code for canister explore_hello, with canister_id rrkah-fqaaa-aaaaa-aaaaq-cai
Installing code for canister explore_hello_assets, with canister_id ryjl3-tyaaa-aaaaa-aaaba-cai
Authorizing our identity (default) to the asset canister...
Uploading assets to asset canister...

然后它只是返回到终端提示,显然没有上传任何资产。index.html在我的 hello-assets 资产目录中也没有或“main.css”文件。您可以在适当的 url (http:localhost:8000/?canisterId=' 加载页面,但您没有得到页面,您只是得到 javascript 提示

4

2 回答 2

2

如果你只是想启动一个静态的简单网站,你可以使用fleek.co的免费服务,专门用于在IC上托管网站。它可以帮助你创建一个容器,自动从本地 repo 部署到 Github,并且可以支持各种前端框架,例如Gatsby。您的站点将部署在带有地址的Internet 计算机上。https://xxxxx-xxxxx-xxxxx-xxxxx-cai.ic0.app

例如,我刚刚为 DFINITY 相关网站Internet Computer Big Bang 创建了一个单页导航页面!用这种方法。准备好 index.html 页面后,在 IC 上启动该站点实际上需要几分钟时间。我发现使用fleek.co 以这种方式进行部署比遵循DFINITY 的官方教程要容易得多。

于 2021-05-31T08:40:35.587 回答
0

从dfx v0.8 开始,快速入门 ( https://sdk.dfinity.org/docs/quickstart/local-quickstart.html ) 对我来说效果很好。

根据文档,对于首次安装:

  1. dfx new //创建默认的hello world布局
  2. 光盘
  3. npm 安装
  4. dfx 部署
于 2021-08-10T13:58:35.870 回答