link url 里面的变量不自动转义

This commit is contained in:
2betop 2020-04-30 15:08:19 +08:00
parent f226fc2444
commit d3027b421a
1 changed files with 5 additions and 1 deletions

View File

@ -198,7 +198,11 @@ export default class Page extends React.Component<PageProps> {
}
env.jumpTo(
filter((action.to || action.url || action.link) as string, ctx),
filter(
(action.to || action.url || action.link) as string,
ctx,
'| raw'
),
action,
ctx
);