表达式引擎ajax调用模块功能
我需要你的帮助,我正在开发表达式引擎 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要在模块安装期间将“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