写一个简单的 zepto 插件

Write a simple zepto plugin

我正在编写几个我想在我的应用程序中使用的简单 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

调用它的页面代码如下:

https://github.com/Pherserk/symfony2_demo_article_feed/blob/partial/feature-user-creation/src/AppBundle/Resources/views/Web/Main/writeArticle.html.twig

如有任何帮助,我们将不胜感激。

我错过了这个:

$.Jwt Token = $.fn.JwtToken;

即在 $ 命名空间级别将函数声明为 $.fn 命名空间中函数定义的别名。