我搜索了很多,有人说`(反引号)可以用于续行,但它对我不起作用。我试过以下但两个都行不通。
at respond (xxxx:8001/index.js?_b=5930:81568:15)
at checkRespForFailure (xxxx/index.js?_b=5930:81534:7)
at xxxx/index.js?_b=5930:80203:7
at wrappedErrback (xxxx/index.js?_b=5930:20882:78)
at wrappedErrback (xxxx/index.js?_b=5930:20882:78)
at wrappedErrback (xxxx/index.js?_b=5930:20882:78)
at http://xxxx/index.js?_b=5930:21015:76
at Scope.$eval (xxxx/index.js?_b=5930:22002:28)
at Scope.$digest (xxxx/index.js?_b=5930:21814:31)
at Scope.$apply (xxxx/index.js?_b=5930:22106:24)
答案 0 :(得分:0)
你不需要使用反引号(或者我没有必要)
但你需要再次按回车。
PS C:\> foreach ($i in 1,2) { echo $i; }
1
2
PS C:\> foreach ($i in 1,2) {
>> echo $i;
>> }
>> <== Press enter again here.
1
2
PS C:\>
我认为这会让解释器知道命令已经完成并允许它执行。