我很难弄清楚将 Ajax 和服务器代码放在 Joomla 组件中的什么位置。我在Joomla 第 2 部分文档之后创建了一个简单的 hello world 组件(我不需要任何其他东西,只是一个简单的组件)。
现在,我正在尝试使用简单的jquery/ajax 教程添加带有 jquery 的 Ajax 代码。所以我将此代码添加到:
components/com_mycomponent/views/mycomponent/tmpl/default.php
<?php
// No direct access to this file
defined('_JEXEC') or die('Restricted access');
?>
<html>
<head>
<title>Ajax with jQuery Example</title>
<script language="javascript" type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/JavaScript">
$(document).ready(function(){
$("#generate").click(function(){
$("#quote p").load("script.php");
});
});
</script>
<style type="text/css">
#wrapper {
width: 240px;
height: 80px;
margin: auto;
padding: 10px;
margin-top: 10px;
border: 1px solid black;
text-align: center;
}
</style>
</head>
<body>
<div id="wrapper">
<div id="quote"><p> </p></div>
<input type="submit" id="generate" value="Generate!">
</div>
</body>
</html>
在同一目录中,我添加了用于服务器端处理的 script.php 文件。同样,仅来自教程:
<?php
header("Cache-Control: no-cache");
// Ideally, you'd put these in a text file or a database.
// Put an entry on each line of 'a.txt' and use $prefixes = file("a.txt");
// You can do the same with a separate file for $suffixes.
$prefixes = array('Mashup','2.0','Tagging','Folksonomy');
$suffixes = array('Web','Push','Media','GUI');
// This selects a random element of each array on the fly
echo $prefixes[rand(0,count($prefixes)-1)] . " is the new "
. $suffixes[rand(0,count($prefixes)-1)];
// Example output: Tagging is the new Media
?>
我猜我指定 script.php 的方式不对,因为我在访问组件时得到了生成按钮:
http://mysite.com/index.php?option=com_mycomponent
编辑:没有注意到非常关键的错误。我收到未找到错误:http://mysite.com/script.php
。这显然不存在。我在哪里把这个放在我的组件上?请记住,使用 ajax 创建组件的全部意义在于,我可以在script.php
. 例如进行如下调用:$user =& JFactory::getUser();
提前致谢。