将 const 添加到字符串?

Posted

技术标签:

【中文标题】将 const 添加到字符串?【英文标题】:add const to a string? 【发布时间】:2018-10-03 07:11:28 【问题描述】:

我刚开始学习 React Native 遇到了问题。

我从我的服务器获取一个 php 文件,需要在 url 中添加一个 ID 参数。 ID 参数保存在 const 中。

如何将我的 const 添加到 fetch url 的末尾?

const Round = 1;

return fetch('http://myurl/data.php?ID=')

【问题讨论】:

Concatenating variables and strings in React的可能重复 【参考方案1】:

您只需要连接Round 变量。

const Round = 1;
return fetch('http://myurl/data.php?ID='+Round);

您也可以使用Template literals

return fetch(`http://myurl/data.php?ID=$Round`);

【讨论】:

【参考方案2】:

使用template literals:

const round = 1;
return fetch(`http://myurl/data.php?ID=$round`);

注意:按照惯例,常规变量的名称应为小写。

【讨论】:

【参考方案3】:

只要把 const 变量放在最后

例如

const Round = 1;

return fetch('http://myurl/data.php?ID='+Round)

【讨论】:

以上是关于将 const 添加到字符串?的主要内容,如果未能解决你的问题,请参考以下文章

C++ 将字符串添加到 const char* 数组

将 CString 转换为 const char*

Swig:如何将 c++ 字符串 const & 类型映射到 python 字符串?

如何使用 swig 将 const 字符串参数从 perl 传递到 c++

如何以编程方式将整数映射到const字符串?

无法将字符串转换为 const char/string* 到 int*