gpt4 book ai didi

javascript - JS 字符串的行为不符合预期

转载 作者:行者123 更新时间:2023-12-03 05:14:06 25 4
gpt4 key购买 nike

我正在创建这样的文件路径:

'/Users/User/Documents/dev/engineerappcopy/VGimages/'+deviceName+'.png'

这些文件路径作为参数传递给函数,该函数使用文件路径在终端上执行命令。

但是,该字符串在函数使用时似乎分为两部分。出现此错误:

exec error: Error: Command failed: /bin/sh -c adb pull /sdcard/nexLogin.png /Users/User/Documents/dev/engineerappcopy/VGimages/josh
.png

/bin/sh: line 1: .png: command not found

这是因为“.png”已从主字符串中分离出来。

最佳答案

deviceName 变量末尾删除换行符。您可能应该使用 the trim method来做到这一点。

'/Users/User/Documents/dev/engineerappcopy/VGimages/'
+ deviceName.trim()
+ '.png'

关于javascript - JS 字符串的行为不符合预期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41678217/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com