gpt4 book ai didi

javascript - Polymer 无法在 Chrome 中工作(在 Firefox 中工作)

转载 作者:行者123 更新时间:2023-11-27 23:32:45 25 4
gpt4 key购买 nike

我运行的是 Windows 7、Firefox 43.0.1 和 Chrome 47.0.2526.106 m

<!DOCTYPE html>
<html lang="en">
<head>
<title>Polymer tutorial</title>
<script src="bower_components/webcomponentsjs/webcomponents-lite.js"></script>
<link rel="import" href="bower_components/polymer/polymer.html" />
<link rel="import" href="hello-world.html" />
</head>

<body>
<hello-world name="Joe"></hello-world>
</body>
</html>

该组件是

<dom-module id="hello-world">
<template>
<h1>Hello, User</h1>
</template>
<script>
Polymer({
is: "hello-world"
});
</script>
</dom-module>

Chrome 拒绝渲染。 Firefox 没有问题。

我通过在命令行输入 bower installpolymer 来安装 polymer 。 Bower.json 说它的版本是 1.2.3

最佳答案

尝试在组件文件中导入 polymer 库,如下所示,

索引.html

<!DOCTYPE html>
<html lang="en">
<head>
<title>Polymer tutorial</title>
<script src="bower_components/webcomponentsjs/webcomponents-lite.js"></script>
<link rel="import" href="hello-world.html" />
</head>

<body>
<hello-world name="Joe"></hello-world>
</body>
</html>

组件

<link rel="import" href="bower_components/polymer/polymer.html" />

<!DOCTYPE html>
<html lang="en">
<head>
<title>Polymer tutorial</title>
<script src="bower_components/webcomponentsjs/webcomponents-lite.js"></script>
<link rel="import" href="bower_components/polymer/polymer.html" />
<link rel="import" href="hello-world.html" />
</head>

<body>
<hello-world name="Joe"></hello-world>
</body>
</html>

关于javascript - Polymer 无法在 Chrome 中工作(在 Firefox 中工作),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34411210/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com