文章:从搜索框给动作传递参数 https://getquicker.net/kc/help/doc/search-adv#gXa3r
我已经会用:[图标]文字(描述文字)|operation=选择选项后的操作&data=要操作的值的URL编码
这个来进行返回列了。
但是我想用这个:
也可通过表达式直接返回CustomSearchResult类型的对象:
$=new CustomSearchResult(){
Items = new List<CustomSearchResultItem>(){
new CustomSearchResultItem(){
Title = "结果项标题",
Icon = "fa:Light_Cog",
SecondaryIcon = "fa:Light_history",
DataType = "text",
Data = "Hello World",
//.....其他属性,可以通过补全查看...
}
}};
我不会用 ,怎么分成多个返回值呢? 教程里面只列出单个返回,没有写明多个返回书写格式
$=new CustomSearchResult(){
Items = new List<CustomSearchResultItem>(){
new CustomSearchResultItem(){
Title = "结果项标题",
Description="结果项描述",
DataType = "text",
Data = "Hello World",
//.....其他属性,可以通过补全查看...
}
}}
而:[图标]文字(描述文字)|operation=选择选项后的操作&data=要操作的值的URL编码 ,
就是这样多个返回的:
结果1(商品A)|operation=callback&data=%E8%DF%95%E5%9B,
结果2(商品B)|operation=callback&data=%E8%BF%94%E19B,
结果3(商品C)|operation=callback&data=%E8%Bd%94%E19B
那么CustomSearchResult类型的对象 应该在哪里分段呢? 在哪里打逗号呢? 怎么多个返回列表啊?