我正在使用Wagtail / Django创建一个博客。
我在文章正文中使用了富文本字段。
在页面的一侧,我想有一列“相关文章”,它们只是文章中的链接。
示例: 猫(链接到猫的文章)与狗(链接到狗的文章)不同。
然后,在侧栏中的相关文章下,我有指向猫和狗文章的链接。
现在,我正在使用页面选择器面板,并根据需要添加相关文章。但是我正在寻找类似的东西:
-contains
# Parse sample CSV input into objects with .Zenskie and .Meskie properties.
$names = @'
Zenskie;Meskie
Ada;Aaron
Adamina;Abdon
Adela;Abel
'@ | ConvertFrom-Csv -Delimiter ';'
# Extract the male and female names into individual arrays.
# Note how no quoting is needed to acces the properties (columns) by names
# and how accessing a property on the input array ($names) automatically
# returns the property values *from all array elements*, a feature known
# as member enumeration.
$maleNames = $names.Meskie
$femaleNames = $names.Zenskie
# Test a few sample names.
'Abdon', 'Bogna', 'Adela', 'Bill' | ForEach-Object {
if ($_ -eq 'Bogna') { # exception
"Pocałuj mnie!! :)"
}
elseif ($_ -in $maleNames) { # -in tests presence in the array, case-insensitively
"$_, you are a man."
}
elseif ($_ -in $femaleNames) {
"$_, you are a woman."
}
else {
"$_, you have an odd name."
}
}
使用Wagtail或纯Django可能吗?如果没有,那么与使用页面选择器添加页面相比,还有没有比这更接近的方法了?