url: '/pages_docking/fabuRegistrationFee?priseList=' + JSON.stringify(this.priseList)
时间: 2024-03-24 20:39:18 浏览: 101
在这里,你将 `priseList` 对象转换为 JSON 字符串,并将其作为查询参数传递给 `fabuRegistrationFee` 页面。在接收方页面中,你可以使用 `$route.query` 访问查询参数,如下所示:
```javascript
// 在接收方页面中访问查询参数
mounted() {
const priseList = JSON.parse(this.$route.query.priseList)
console.log(priseList)
}
```
在上面的代码中,我们使用 `JSON.parse` 函数将传递的 JSON 字符串转换回原始 JavaScript 对象,并将其存储在 `priseList` 变量中。
需要注意的是,如果 `priseList` 对象包含特殊字符,例如空格或 `&`,那么你需要使用 `encodeURIComponent` 函数对查询字符串进行编码,以确保它们正确传递,如下所示:
```javascript
// 对查询字符串进行编码
const queryString = '/pages_docking/fabuRegistrationFee?priseList=' + encodeURIComponent(JSON.stringify(this.priseList))
```
在上面的代码中,我们使用 `encodeURIComponent` 函数对 JSON 字符串进行编码,以确保查询字符串中的特殊字符被正确处理。
相关问题
################################################################# # If you used AutoDock Vina in your work, please cite: # # # # O. Trott, A. J. Olson, # # AutoDock Vina: improving the speed and accuracy of docking # # with a new scoring function, efficient optimization and # # multithreading, Journal of Computational Chemistry 31 (2010) # # 455-461 # # # # DOI 10.1002/jcc.21334 # # # # Please see http://vina.scripps.edu for more information. # ################################################################# WARNING: The search space volume > 27000 Angstrom^3 (See FAQ) Detected 16 CPUs WARNING: at low exhaustiveness, it may be impossible to utilize all CPUs Reading input ... done. Setting up the scoring function ... done. Analyzing the binding site ... 是什么情况
这段信息看起来像是AutoDock Vina分子对接软件的输出结果。其中“WARNING: The search space volume > 27000 Angstrom^3”表示搜索空间过大,可能会影响计算结果的准确性;“Detected 16 CPUs”表示检测到16个CPU可用;“Setting up the scoring function ... done”表示正在设置评分函数;“Analyzing the binding site”则表示正在分析配体结合位点。
阅读全文