我有一个多维数组($(document).ready(function () {
$('#myForm').validate({ // initialize the plugin
rules: {
status: {
required: true,
},
type: {
required: true,
},
min_bed: {
required: true,
},
max_bed: {
required: true,
}
}
});
),并希望将其“线性化”为字符串。所以我尝试使用这个递归函数:
MyArray
但是,我只从数组的第一级获取密钥:递归调用似乎不起作用。有谁能发现问题?
答案 0 :(得分:1)
您正在返回$RecursiveOutput
,但您没有抓住返回值。试试这个
$RecursiveOutput .= "(". $key .")(". RecursiveFunction($value) .")";