表达式引擎ajax调用模块功能

发布于 2024-10-30 22:14:20 字数 958 浏览 1 评论 0原文

我需要你的帮助,我正在开发表达式引擎 2.x 并使用 uploadify 通过 jaquery 方法上传文件。

在js代码中我需要提供上传url脚本。 并且不知道如何调用在 db 中注册的模块函数。 我尝试了 index.php?ACT=function_name 但没有附加任何内容 谢谢

$.ready(function(){

$('.uploadify').uploadify({
    'swf'           : 'http://ee.statistic.local/index.php/themes/thrid_party/bmm_cloudupload/swf/uploadify.swf',
    'uploader'      : '**http://ee.statistic.local/index.php/index.php?ACT=108**',
    'checkExisting' : false,
    'debug'         : false,
    'cancelImage'   : 'http://ee.statistic.local/index.php/themes/thrid_party/bmm_cloudupload/uploadify-cancel.png',
    'folder'        : 'http://ee.statistic.local/index.php/tmp',
    'auto'          : false,
    'buttonText'    : 'Select Files',
    'fileTypeExts'  : '*.*',
    'queueID'       : 'upload-queue',
    'removeCompleted'   : false,
    'uploadLimit'       : 0,
    'multi'             : true,
    'transparent'       : true

  });

});

I need youre help , i'm working on expression engine 2.x and use uploadify to upload files with jaquery method.

In the js code i need to provide upload url script .
And don't how to reach calling of my module function registered in db .
I tried index.php?ACT=function_name but nothings append
Thx

$.ready(function(){

$('.uploadify').uploadify({
    'swf'           : 'http://ee.statistic.local/index.php/themes/thrid_party/bmm_cloudupload/swf/uploadify.swf',
    'uploader'      : '**http://ee.statistic.local/index.php/index.php?ACT=108**',
    'checkExisting' : false,
    'debug'         : false,
    'cancelImage'   : 'http://ee.statistic.local/index.php/themes/thrid_party/bmm_cloudupload/uploadify-cancel.png',
    'folder'        : 'http://ee.statistic.local/index.php/tmp',
    'auto'          : false,
    'buttonText'    : 'Select Files',
    'fileTypeExts'  : '*.*',
    'queueID'       : 'upload-queue',
    'removeCompleted'   : false,
    'uploadLimit'       : 0,
    'multi'             : true,
    'transparent'       : true

  });

});

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

疏忽 2024-11-06 22:14:20

您需要在模块安装期间将“uploader”方法插入到操作表中,这将为您提供要使用的操作 ID。

http://expressionengine.com/user_guide/development/modules.html

You need to insert your 'uploader' method into the actions table during the module's install, which will give you the action ID to use.

http://expressionengine.com/user_guide/development/modules.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文