正如这里的教程:https ://aescripts.com/bodymovin/我尝试在我的 rails 项目中渲染我的 svg。我想我可以找到播放器,但找不到 json:我的打字稿文件如下所示:
const bodymovin = require("../player/securite.js");
const animation = bodymovin.loadAnimation({
container: document.getElementById('json-test'),
renderer: 'svg',
loop: true,
autoplay: true,
path: "app/json/securite.json"
})
有了这个,我有错误404 (Not Found)
。我还尝试将我的 json 文件放在我的 Javascript 文件夹中:相同的结果,在我的资产中:相同的结果。你知道我应该把我的 json 文件放在我的项目 rails 的什么地方吗?同样使用 gulp,是否有任何兼容性问题?