简体   繁体   English

应用找不到插件文件

[英]App can't find plugin file

I am trying to load insert this library into my ionic project: https://www.npmjs.com/package/ionic-native-transitions . 我正在尝试将该库加载到我的离子项目中: https : //www.npmjs.com/package/ionic-native-transitions

I ran the command to install the plugin: 我运行了安装插件的命令:

ionic plugin add https://github.com/Telerik-Verified-Plugins/NativePageTransitions

I then inserted the dependency into my code, but it didn't work and reading this issue https://github.com/shprink/ionic-native-transitions/issues/29 I found out I needed to insert the script into my project so... 然后我将依赖项插入到我的代码中,但是没有起作用,并阅读了这个问题https://github.com/shprink/ionic-native-transitions/issues/29我发现我需要将脚本插入到我的项目中所以...

I have an index.html file located in: 我有一个index.html文件位于:

frontend/www/index.html.

I have a js file I need located in: 我有一个js文件,我需要位于:

frontend/node_modules/ionic-native-transitions/dist/ionic-native-transitions.js

I need to use this javascript file inside of my index.html file so I include it into my header: 我需要在index.html文件中使用此javascript文件,因此将其包含在标题中:

<script src="../node_modules/ionic-native-transitions/dist/ionic-native-transitions.js"></script>

Inside of my IDE it says the path is valid and I can go to the declaration of this file inside of my IDE. 在我的IDE内部,它表示路径有效,我可以在IDE中转到该文件的声明。

When I run the application, I get the following output in my console: 运行应用程序时,在控制台中得到以下输出:

Failed to load resource: net::ERR_FILE_NOT_FOUND `file:///android_asset/node_modules/ionic-native-transitions/dist/ionic-native-transitions.js`

I am unsure why this is happening. 我不确定为什么会这样。 How could I insert this script into my code then? 那我怎么能把这个脚本插入代码呢?

在此处输入图片说明

Turns out it is a problem with the plugin. 原来是插件有问题。 I followed this tutorial now and I got it working: http://www.gajotres.net/handling-native-view-animations-with-ionic-framework/ . 我现在按照本教程进行了学习,并且可以正常工作: http : //www.gajotres.net/handling-native-view-animations-with-ionic-framework/ There is no requirement to load any scripts. 无需加载任何脚本。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM