将 JSON 值加载到 dataTables textarea 字段中
Posted
技术标签:
【中文标题】将 JSON 值加载到 dataTables textarea 字段中【英文标题】:Load JSON value into a dataTables textarea field 【发布时间】:2017-04-20 16:01:56 【问题描述】:每次页面加载时,我都会动态创建一个文本区域,如下所示。
"aoColumnDefs": [
"aTargets": [4],
"createdCell": function (td, cellData, rowData, row, col)
$(td).html('<textarea name="playerProfile" class="playerIfo" spellcheck="true" rows="2" cols="60"> </textarea> ');
我有一个我正在读取的 JSON,然后将其存储到一个数组中。我还有一个名为 userProfile 的全局变量,并为其分配了 JSON 字段的值。在将文本字段推入我的数组后,我尝试了各种方法来动态加载文本字段中的字段,但这似乎不起作用。我可以看到每个 userProfile 的状态,但是我似乎无法进入 textarea。在控制台中没有看到任何空值或错误,因此得出结论认为我加载到 textarea 的方式不正确。代码如下。
function getPlayerData()
$.ajax(
url: urlToUse,
dataType: 'json',
type: 'GET',
).done(function (response)
renderTeamPlayerData(response);
);
function renderTeamPlayerData(result)
var DataArray = [];
var monthNames = ["Jan", "Feb", "Mar", "Apr", "May", "Jun",
"Jul", "Aug", "Sept", "Oct", "Nov", "Dec"
];
$.each(result.players, function ()
userProfile = this.userProfile;
console.log("starting player profile -> " + userProfile );
var rawDate = new Date(this.contractUntil);
var datePretty = monthNames[rawDate.getMonth()] + ", " + (rawDate.getDate())
+ " " + rawDate.getFullYear();
DataArray.push([this.name,
this.nationality,
this.position,
userProfile,
datePretty
]);
console.log("player profile -> " + userProfile );
$(this).closest('tr').find('.playerIfo').text(userProfile );
//$(this).closest('tr').find('.playerIfo').val(userProfile );
console.log("player profile after -> " + userProfile );
//$(this).closest('table tr>td').find('textarea').val(userProfile);
//$(".playerIfo").text(userProfile);
//$('textarea[name=playerProfile]').innerHTML =userProfile ;
);
$('#playerTable').dataTable().fnAddData(DataArray);
$('#playerTable').dataTable().fnAdjustColumnSizing();
有人可以告诉我一种动态加载 JSON 字段(我存储在数组中)的方法吗?
【问题讨论】:
【参考方案1】:你正在倒退。您试图在创建表格元素之前插入userProfile
,即在fnAddData(DataArray)
之前。
由于userProfile
存在于数据中,因此无需通过代码注入它。删除 $(this).closest('tr').find('.playerIfo').text(userProfile );
并使用 render()
回调而不是 createdCell()
:
"aoColumnDefs": [
"aTargets": [4],
"render": function(data, type, full, meta)
if (type == 'display')
return '<textarea name="playerProfile" class="playerIfo" spellcheck="true" rows="2" cols="60">'
+ data
+ '</textarea>';
return data
]
【讨论】:
以上是关于将 JSON 值加载到 dataTables textarea 字段中的主要内容,如果未能解决你的问题,请参考以下文章
JavaScript + Jquery DataTable - 将数据传递到 defaultContent json 列
为啥 JSON.NET 以这种格式在我的 DataTable 中输出 DateTime 值?