0

这是vaadin-context-menu文档页面

在该页面上,有一个标记为TRY IT OUT 链接到此处的演示页面的按钮。

我的问题是我无法让演示页面真正做任何事情。我在控制台中没有看到任何错误。

是我的问题吗?还是演示有问题?如果是后者,我该如何修复代码以使演示工作?

请在工作的 jsBin 或 Codepen 中显示解决方案。

https://jsbin.com/yihupap/1/edit?html,输出
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>vaadin-context-menu demo</title>
  <script src="https://cdn.vaadin.com/vaadin-core-elements/master/webcomponentsjs/webcomponents-lite.js"></script>
  <link rel="import" href="https://cdn.vaadin.com/vaadin-core-elements/master/vaadin-context-menu/vaadin-context-menu.html">

  <!-- import paper-menu and paper-item -->
  <link rel="import" href="https://cdn.vaadin.com/vaadin-core-elements/master/paper-listbox/paper-listbox.html">
  <link rel="import" href="https://cdn.vaadin.com/vaadin-core-elements/master/paper-item/paper-item.html">
</head>
<body>

<vaadin-context-menu>
  <template>
    <paper-listbox>
      <paper-item>First menu item</paper-item>
      <paper-item>Second menu item</paper-item>
    </paper-listbox>
  </template>

  <p>This paragraph has the context menu provided in the above template.</p>
  <p>Another paragraph with the context menu.</p>
</vaadin-context-menu>
</body>
</html>
4

2 回答 2

1

问题实际上出在 JSBin 和 Safari 上。我什至无法在 Safari 中加载该死的页面(版本 10.1.1 12603.2.4)。

但主演示页面确实适用于 safari、chrome 等:http: //vaadin.com/elements/-/element/vaadin-context-menu#demos

改用那个。

按照这里的要求,在您的问题中使用相同示例的工作代码笔:https ://codepen.io/anon/pen/MozOxG

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>vaadin-context-menu demo</title>
  <script src="https://cdn.vaadin.com/vaadin-core-elements/master/webcomponentsjs/webcomponents-lite.js"></script>
  <link rel="import" href="https://cdn.vaadin.com/vaadin-core-elements/master/vaadin-context-menu/vaadin-context-menu.html">

  <!-- import paper-menu and paper-item -->
  <link rel="import" href="https://cdn.vaadin.com/vaadin-core-elements/master/paper-listbox/paper-listbox.html">
  <link rel="import" href="https://cdn.vaadin.com/vaadin-core-elements/master/paper-item/paper-item.html">
</head>
<body>

<vaadin-context-menu>
  <template>
    <paper-listbox>
      <paper-item>First menu item</paper-item>
      <paper-item>Second menu item</paper-item>
    </paper-listbox>
  </template>

  <p>This paragraph has the context menu provided in the above template.</p>
  <p>Another paragraph with the context menu.</p>
</vaadin-context-menu>
</body>
</html>
于 2017-07-10T18:00:19.950 回答
0

编辑:@petey 在评论中指出,此答案仅适用于尝试vaadin-context-menu从 jsBin 运行时。所以问题可能出在 jsBin 和 Safari 之间,而不是 Vaadin 和 Safari 之间。

此答案仅适用于 JSBin。

它适用于 Chrome。但不是在 Safari 上。(运行 macOS Sierra v.10.12.5。)

vaadin-context-menu
Browser  Support
-------  -------
Chrome     ✅
Safari     ❌

Safari 目前显然不支持vaadin-context-menu。下面是使用 Safari 和 Chrome 的屏幕录像。

(注意:在下面的录音中:绿色圆圈表示右键单击。黑色圆圈表示左键单击。)

野生动物园❌</h1>

v10.1.1 (12603.2.4):

在此处输入图像描述

铬✅</h1>

v59.0.3071.115(官方版本)(64 位):

在此处输入图像描述

于 2017-07-08T04:06:06.823 回答