我需要将riot js添加到我的laravel项目中,并且不确定我是否正在采用正确的方法为laravel项目集成riot。
我在laravel views文件夹中的blade.php文件中尝试了以下操作。
<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Laravel</title>
<!-- Fonts -->
<link
href="https://fonts.googleapis.com/css?family=Nunito:200,600"
rel="stylesheet"
type="text/css"
/>
<script src="../js/riotcompiler.js" type="riot/tag"></script>
</head>
<body>
<hello></hello>
<script src="../tags/hello.tag" type="tag"></script>
<script>
riot.mount("hello");
</script>
njk
</body>
</html>
然后,当我运行laravel项目时,它将生成一个异常,说明未定义riot。但是我已经在全球安装了riot。那么,如何解决此问题?我需要通过composer安装riot吗?
答案 0 :(得分:1)
如果将js文件移动到public/js
文件夹中,则可以使用以下命令在刀片文件中调用它:
<script type="text/javascript" src="{{ URL::asset('js/riotcompiler.js') }}"></script>
函数URL::asset()
将为您生成所需的网址。
答案 1 :(得分:0)
我相信这可以解决问题:
<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Laravel</title>
<!-- Fonts -->
<link
href="https://fonts.googleapis.com/css?family=Nunito:200,600"
rel="stylesheet"
type="text/css"
/>
<script src="../js/riotcompiler.js" type="riot/tag"></script>
</head>
<body>
<hello></hello>
<script src="../tags/hello.tag" type="tag"></script>
<script>
riot.compile(function() {
// here tags are compiled and riot.mount works synchronously
riot.mount('hello')
})
</script>
</body>
</html>
答案 2 :(得分:0)
问题是没有将标记文件和riotcompiler文件保留在公共目录中,并且在laravel中没有以正确的方式给出路径。因此,可行的代码如下。
<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Laravel</title>
<!-- Fonts -->
<link
href="https://fonts.googleapis.com/css?family=Nunito:200,600"
rel="stylesheet"
type="text/css"
/>
<script
type="text/javascript"
src="{{ URL::asset('js/riotcompiler.js') }}"
></script>
</head>
<body>
<hello></hello>
<script
src="{{ URL::asset('tags/hello.tag') }}"
type="riot/tag"
></script>
<script>
riot.mount("hello");
</script>
njk
</body>
</html>