标签: javascript plugins jquery-plugins zepto
我正在编写一些我想在我的应用程序中使用的简单zepto插件:
https://github.com/Pherserk/symfony2_demo_article_feed/tree/partial/feature-user-creation/src/AppBundle/Resources/public/js/JsonApiAjax.js
https://github.com/Pherserk/symfony2_demo_article_feed/tree/partial/feature-user-creation/src/AppBundle/Resources/public/js/JwtAjax.js
包括zepto库和上面的两个文件,我收到错误TypeError: $.JwtAjax is not a function
TypeError: $.JwtAjax is not a function
以下是调用它的页面代码:
https://github.com/Pherserk/symfony2_demo_article_feed/blob/partial/feature-user-creation/src/AppBundle/Resources/views/Web/Main/writeArticle.html.twig
任何帮助都将不胜感激。
答案 0 :(得分:0)
我错过了这个:
$。JwtToken = $ .fn.JwtToken;
这就是将函数声明为$ namespace的级别,作为$ .fn命名空间中函数定义的别名。