作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我模块中的文件结构
tmpl
default.php
helper.php
mod_helloword.php
mod_helloword.xml
我在 default.php 文件中有这个表单
<form action="" method="post"
enctype="multipart/form-data">
<label for="file">Filename:</label>
<input type="file" name="file" id="file"><br>
<input type="submit" name="submit" value="Submit">
</form>
我想在点击提交到 heper.php 文件后传递它在该表单中, Action 属性必须设置为什么??
最佳答案
你不需要设置一个 Action ,你可以简单地给它一个名字。所以你的表单看起来像这样:
<form name="submit" method="post" enctype="multipart/form-data">
<label for="file">Filename:</label>
<input type="file" name="file" id="file"><br>
<input type="submit" name="submit" value="Submit">
</form>
然后你的 helper.php :
class ModHelloWorldHelper {
public static function submit($file) {
// some code goes here
}
}
然后是您的 mod_helloworld.php(调用 helper.php 中的函数):
$input = new JInput;
$post = $input->getArray($_POST);
if ($post["submit"]) {
modHelloWorldHelper::submit($file);
}
请注意,您当然需要进行一些更改以满足您的需求,因为上面的代码只是为了让您有个小小的开始
关于joomla - 如何在 joomla 模块中设置 Action 以形成,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20659236/
我是一名优秀的程序员,十分优秀!