这是一个问题(或设计模式?),我认为这是很常见的,所以我希望这篇文章可以帮助其他类似问题的人....
我有一种并非罕见的情况,复杂的表单需要动态地允许用户编辑依赖于用户做出的其他选择的数据。我正在使用Ajax,jQuery和PHP以及postgres作为后端数据库。
我已经找到了如何根据用户选择的两个值,使用jQuery Ajax技术返回单个记录的数据(为此,Ajax比php更加光滑);通常返回值将是一个记录,我的HTML表单可以处理。但有时返回值将是两个或三个记录。在这种情况下,我需要动态添加输入字段并使用返回的数据填充它们。
这是我表格中的代码; Fetch按钮采用Selected Marker值和Selected LabID值来查找依赖记录,其中包含Allele_1,Allele_2和Run date:
<fieldset>
<LEGEND><b>Edit Genotype</b></LEGEND>
<p>
<boldlabel>Selected Marker</boldlabel><input name=sel_marker length=15 DISABLED>
<boldlabel>Selected LabID</boldlabel><input name=sel_labid length=10 DISABLED><br>
<boldlabel>Allele_1</boldlabel><input id=allele1 name=allele_1 size=5 >
<boldlabel>Allele_2</boldlabel><input id=allele2 name=allele_2 size=5 >
<boldlabel>Run date</boldlabel><input id=run_date name=run_date size=10 >
<br>
</p>
<input type="button" name="fetch" id="fetchbutton" value="Fetch" sclass="btn">
<input type="button" name="save" value="Save" onclick="savegenotype()" class="btn">
<br>
</fieldset>
这是链接到获取按钮的javascript代码:
function fetchgenotype() {
// here's where we use an Ajax function to fetch the allele values without reloading the page.
// Get the index number of the genotype record to retrieve; retrieve it; populate the alleles.
var mndx = document.EditGenotype.marker.options[document.EditGenotype.marker.selectedIndex].value;
var sndx = document.EditGenotype.labid.options[document.EditGenotype.labid.selectedIndex].value;
$.post("fetchAlleles.php", {mndx: mndx, sndx: sndx},
function(result) {
i=0;
result.each(
a1='allele1_'||i.toString();
a2='allele2_'||i.toString();
r='rundate_'||i.toString();
$("#run_date").after(a1);
$("#run_date").after(a2);
$("#run_date").after(r);
)
}, "json");
return false;
}
以下是单独的PHP脚本,它是查找相关数据的Ajax部分:
// query the database.
$dbconnect = pg_pconnect("host=".$hostname." user=".$dbuser." dbname=".$dbname);
if (!$dbconnect) {
showerror(0,"Failed to connect to database",'fetchAlleles',16,"username=".$dbuser.", dbname=".$dbname);
exit;
}
$sql = "SELECT allele1, allele2, run_date FROM geno.genotypes WHERE markers_id=".$mndx." AND gsamples_id=".$sndx;
$fetchresult = pg_exec($dbconnect, $sql);
if ($fetchresult) {
$arr = pg_fetch_array($fetchresult, 0, PGSQL_NUM);
// for debugging
//print_r($arr);
} else {
echo "(25) Failed to retrieve results.<BR>SQL: ".$sql."</br>";
}
// It appears necessary to return the array as json encapsulated.
echo json_encode($arr);
?>
}
这部分适用于单值案例;但是当返回值是多个记录的数组时,我的表单的javascript部分中的jQuery代码语法不正确。我收到错误 A1 = 'allele1_' || i.toString();
任何可以让我直截了当的jQuery大师都会非常赞赏...
答案 0 :(得分:2)
我的第一个想法是:使用pg_affected_rows找出你有一个或多个记录的人。
我的第二个念头:为什么不pg_fetch_object?我想你会变得更好(可读)json。
我的第三个想法:你应该统一JSON输出。 很常见的做法是 - JSON响应应该看起来像一个对象数组。如果DB只返回一条记录 - &gt; JSON-response是一个只有ONLY项的数组。如果DB返回多个 - > JSON-response是一个包含多个项目的数组
JSON-Response的示例
//DB return only ONE record
{
"items": [
{
"allele1" : "the-value",
"allele2" : "the-value",
"run_date" : "the-date"
}
],
"totalItems : 1
}
//DB returns more than one records
{
"items": [
{
"allele1" : "the-value_1",
"allele2" : "the-value_1",
"run_date" : "the-date_1"
},
{
"allele1" : "the-value_2",
"allele2" : "the-value_2",
"run_date" : "the-date_2"
},
...
{
"allele1" : "the-value_n",
"allele2" : "the-value_n",
"run_date" : "the-date_n"
}
],
"totalItems : n
}
如果得到这样的结果,您可以更轻松地动态创建INPUT字段。 首先,您可以轻松检查是否收到了一条或多条记录
if(response.totalItems === 1 ) {
// handle single record
}else if (response.totalItems > 1) {
// handle multiple records
}
如果有多条记录,您可以使用jQuery.each()&amp; jQuery.map()并生成inputfields
if (response.totalItems > 0) {
//iterate through all items in JSON-response
$.each(response.items, function(index, object) {
// create FIELDSET element
var $fieldset = $('<fieldset>', {'html' : '<legend>#'+(index+1)+'</legend>'});
$.map(object, function(value ,key) {
//create LABEL element and appendInto FIELDSET
$fieldset.append($('<label>', {'text' : key, 'for' : key}));
//create INPUT element and appendInto FIELDSET
$fieldset.append($('<input>', {'id': key, 'name': key, 'value' : value}));
//create LineBreak
$fieldset.append('<br />');
});
// Append whole FIELDSET with LABEL, INPUT and BR to body (or whatever your placeholder is)
$('body').append($fieldset);
});
}