小编Mat*_*att的帖子

Hotwire Turbo 不会取代 Turbo-frame,会引发警告:响应没有匹配的 <turbo-frame id=...> 元素

我正在开始使用 Rails 6 中的 Hotwire 和 Turbo,但遇到 Turbo 无法替换我的 Turbo 框架的问题。我收到以下错误消息:Response has no matching <turbo-frame id="experiments"> element

我通过控制器操作在页面上呈现以下内容:

<!-- index.html.erb -->
<turbo-frame id="experiments" src="/labs/experiments">
  <p>This message will be replaced by the response from /labs/experiments.</p>
</turbo-frame>
Run Code Online (Sandbox Code Playgroud)

这正确地将请求发送到/labs/experiments,当我检查我的网络请求时,我的控制器返回以下内容:

<h2>Experiment 1</h2>
<h2>Experiment 2</h2>
Run Code Online (Sandbox Code Playgroud)

但是,响应不会在我的涡轮框架内呈现,而是收到控制台日志警告:Response has no matching <turbo-frame id="experiments"> element

如有任何帮助,我们将不胜感激:)

ruby-on-rails turbolinks hotwire-rails turbo

17
推荐指数
1
解决办法
5225
查看次数

在 Azure DSVM 上创建和使用自定义 Anaconda 环境

我想在 Azure Linux 数据科学虚拟机 (DSVM) 上使用具有特定库(Keras、TensorFlow)的特定 Python 环境,将我的一些本地工作迁移到云端。

我使用 Keras v2.1.6 在终端中创建了环境。另外,我可以在 Jupyter 环境中看到环境。但是,当我将内核切换到新环境并运行时:

import keras
keras.__version__
# output: 2.1.2.
Run Code Online (Sandbox Code Playgroud)

这应该是 2.1.6。

任何帮助,将不胜感激!

azure anaconda jupyterhub azure-dsvm

1
推荐指数
1
解决办法
1005
查看次数