从 Nuxt.js 中的查询获取数组参数
P粉714780768
P粉714780768 2023-08-28 15:52:55
0
1
539
<p>我正在使用Nuxt.js(Nuxt版本是2) 我的页面上有查询参数 <code>https://localhost:9000/applicant?period_manual[]=2022-10-09&period_manual[]=2022-10-19</code></p> <p>我需要从查询中获取 <code>period_manual</code> 参数。</p> <p>如果我尝试这样做</p> <pre class="brush:php;toolbar:false;">console.log(this.$route.query.period_manual) //- It is undefined console.log(this.$route.query) //- this outputs {period_manual[]: ["2022-10-16", "2022-10-25"]} console.log(this.$route.query.period_manual[]) //- ESLint error - ESLint: Parsing error: An element access expression should take an argument</pre> <p>如何从查询请求中获取 period_manual[] 的数据?</p>
P粉714780768
P粉714780768

全部回复(1)
P粉038856725

尝试一下

this.$route.query['period_manual[]']
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板