unexpected error

知识
刘梅老师 2019-07-17 16:56:27

An unexpected error occured:一个非预期的问题出现。 res:sp3res.dll/default.hta是指出现问题的文件,一般这个文件在c:\windows下,或c

#unexpected error#

返回顶部

影响力:5094

Aspen plus V8.4出现an unexpected error has occurred an error log has

描述: anunexpectederrorhasoccurredanerrorloghasbeen怎么弄啊AspenplusV8.4... an unexpected error has occurred an error log has been 怎么弄啊 Aspen plus V8.4

这个解答帮助过4111人

您好,我电脑上Aspen plus也发生了这样的问题,请问您解决了吗?希望能交流一下。

编辑时间 2019-01-13 12:17:13
影响力:4611

modelsim中Error: (vlog-13069) D:/div8.v(1): near "?": syntax error, unexpected '?', expecting ')'.

描述: Error:(vlog-13069)D:/study/EXAMPLES/ModelsimExamples/work/div8.v(1):near"?":syntaxerror,unexpected'?',expecting')'.————————————————————————————... Error: (vlog-13069) D:/study/EXAMPLES/Modelsim Examples/work/div8.v(1): near "?": syntax error, unexpected '?', expecting ')'.
————————————————————————————
module div8(clk,rst,clk_out);
input clk;
input rst;
output clk_out;
reg clk_out;
reg [3:0] cnt;
always @(posedge clk)
begin
if(rst)
begin
cnt<=0;
clk_out<=0;
end
else
begin
if(cnt==3)
begin
cnt<=0;
clk_out<=~clk_out;
end
else
begin
cnt<=cnt+1;
clk_out<=clk_out;
end
end
end
endmodule
展开
这个解答帮助过1414人

从你所贴的代码,在首行附近没看出实际的错误。可能你所贴的,和modelsim看到的不是一个东西。
根据经验,这种问题的发生,都是不小心混入“全角字符”,尤其是“全角空格”的原因。
尝试做如下操作:进入编辑器,在首行末尾“;”之后,删除一切不可见的可能的字符。如果采用vim之类的编辑器,可以输入如下命令,查看实际的行:(冒号 + 1 + 小写的l + 回车)

:1l
如果紧接在行尾“;”之后不是“$”,则可以执行以下操作删除行尾:
(小写的f + “;”+ 小写的l + 大写的D + 回车

f;lD
然后再存储退出。类似的问题基本都是差不多的,试试看。

编辑时间 2019-03-21
影响力:1170

syntax error near unexpected token ';;' 报错

描述: 用notepad++确认过了,现在就是linux格式求大佬不要复制粘贴代码就是php-fpm.conf文件,下面是其中一部分;;;;;;;;;;;;;;;;;;;;;;FPMConfiguration;;;;;;;;;;;;;;;;;;;;;;;Allrelative... 用notepad++ 确认过了 , 现在就是linux格式
求大佬 不要复制粘贴
代码就是php-fpm.conf 文件,下面是其中一部分
;;;;;;;;;;;;;;;;;;;;;
; FPM Configuration ;
;;;;;;;;;;;;;;;;;;;;;

; All relative paths in this configuration file are relative to PHP's install
; prefix (/usr/local/php). This prefix can be dynamically changed by using the
; '-p' argument from the command line.

; Include one or more files. If glob(3) exists, it is used to include a bunch of
; files from a glob(3) pattern. This directive can be used everywhere in the
; file.
; Relative path can also be used. They will be prefixed by:
; - the global prefix if it's been set (-p argument)
; - /usr/local/php otherwise
;include=etc/fpm.d/*.conf

报的错误就是
line 1:syntax error near unexpected token ';;'
line 1:';;;;;;;;;;;;;;;;;;;;;'
求大佬解决!!!
展开
这个解答帮助过5732人

如下建议:
1,单从报错上看。
;;;;;;;;;;;;;;;;;;;;
; FPM Configuration ;
;;;;;;;;;;;;;;;;;;;;;
这三行问题可能性最大,你可以先将其删除。测试一下。
2,此外。
PHp-fpm目前的配置文件可以使得#来注释。
3,

我们通常在测试环境验证问题的时候,是这样的。先将注释全部剔除。只留下。生效的配置。慢慢再增加可疑点。

追问

首先感谢大神~~

  1. 这三行我删除掉了,删掉之后就变成下面的;报错

  2. 我把所有;都替换成了#,这回的报错是pid:command not found 等很多此类报错,请问这是我哪里没有设置或者安装呢

  3. 方法get到了,我是服务器这边初学者,感谢大佬指导

编辑时间 2019-04-06
影响力:7947

php报错 Parse error: syntax error, unexpected T_STRING in

描述: Parseerror:syntaxerror,unexpectedT_STRINGin出错的是第12行namespacethink;这是12行的代码... Parse error: syntax error, unexpected T_STRING in 出错的是第12行namespace think; 这是12行的代码

这个解答帮助过6686人

一般来说,syntax error, unexpected T_STRING 这种错误,大多是由于语句没有正常结束造成的,比如,出错的语句上一行忘写语句结束符: ; (分号),结果导致代码无法正确解析。
建议检查源代码的上一行代码,是否存在 分号 是否正确。
其余情况,请进一步提供源代码。

追问

第10行    // +----------------------------------------------------------------------
第11行
第12行 namespace think;
// ThinkPHP 引导文件
// 加载基础文件
require __DIR__ . '/base.php';
// 执行应用
App::run()->send();

编辑时间 2019-02-21
影响力:3705

syntax error, unexpected 'else' (T_ELSE) in

描述: if(mysqli_fetch_array(mysqli_query("SELECT*FROMcoderpay_orderWHEREpay_no='$ddh'"))){}else... if(mysqli_fetch_array(mysqli_query("SELECT * FROM coderpay_order WHERE pay_no='$ddh'"))){

}
else
这个解答帮助过4328人

Parse error: syntax error, unexpected T_ELSE 语法错误,无法预料的T_ELSE 一般这种错误,原因是IF...ELSE语句块没有正确匹配导致的。 因为没有不知道EX8_6_delete.php 第3行是哪个,具体原因有待进一步分析。 在以上的代码中,存在IF...ELSE语句块没有正确匹配的错误,代码位置如下: if ($result) echo "<script>alert('删除成功!');location.href='EX8_6_admin.php';</script>"; } } //此处少了个大括号 else echo "<script>alert('未选择投票选项!')</script>";

编辑时间 2019-09-19
影响力:6674

php报错:Parse error: syntax error, unexpected 'if' (T_IF)

描述: if($choose==="php"){$intNum1=intval(file_get_contents('php.txt'));file_put_contents('php.txt',strval($intNum1+1));}elseif($choose==="asp"){$intNum2=intval(file_get_conten... if ($choose==="php"){
$intNum1 = intval(file_get_contents('php.txt'));
file_put_contents('php.txt', strval($intNum1 + 1));
}elseif($choose === "asp"){
$intNum2 = intval(file_get_contents('asp.txt'));
file_put_contents('asp.txt', strval($intNum2 + 1));
}else{
$intNum3 = intval(file_get_contents('jsp.txt'));
file_put_contents('jsp.txt', strval($intNum3 + 1));
}
echo "正在跳转至结果页面";
header("location:jieguo.php");
}
展开
这个解答帮助过9828人

  1. 语法错误

  2. 把最后的花括号去掉

追问

忘了吧代码发全了:

追答

echo "正在跳转至结果页面";
header("location:jieguo.php");
这两句后面的分号改成英文分号看看
fopen后面缺了分号

追问

按照你的改了,再次抛出错误:
Fatal error: Call to undefined function  () in C:\phpStudy\PHPTutorial\WWW\tp1\clym.php on line 8

更多追问

编辑时间 2019-02-20
影响力:8295

JS Uncaught SyntaxError: Unexpected token( --指的是data()错误

描述: <!DOCTYPEhtml><html><head><metacharset="UTF-8"><title>vue-test</title><scriptsrc="../node_modules/vue/dist/vue.js"></script></head><body><divid="app"><cmt-box@func="loadC... <!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>vue-test</title>
<script src="../node_modules/vue/dist/vue.js"></script>
</head>
<body>
<div id="app">
<cmt-box @func = "loadComments"></cmt-box>

<ul>
<li v-for="item in list" :key="item.id">
<span class="bdge">评论人:{{item.user}}</span>-----{{item.id}}-----
{{item.content}}
</li>
</ul>

</div>
<template id="tmpl">
<div>
<div>
<label>评论人<input type="text" v-model="user"></label>
<label>评论内容<input type="text" v-model="content"></label>
<input type="button" value="submit" @click="postComment">
</div>
</div>
</template>
<script>
var commentBox={
data(){
return {
user:"1",
content:"2"
}
},
template:'#tmpl',
methods:{
postComment(){
var comment = {id:Date.now(),user:this.user,content:this.content}
var list = JSON.parse(localStorage.getItem('cmts')||'[]')
list.unshift(comment)
localStorage.setItem('cmts',JSON.stringify(list))
this.user = this.content = ''
this.$emit('func')
}
}
}

var vm = new Vue({
el:'#app',
data:{
list:[
{id:Date.now(),user:'礼拜11',content:'我是谁1'},
{id:Date.now(),user:'礼拜12',content:'我是谁2'},
{id:Date.now(),user:'礼拜13',content:'我是谁3'}]
},
created(){
this.loadComments()
},
methods:{
loadComments(){
localStorage.setItem('cmts',JSON.stringify(this.list))
var list =JSON.parse(localStorage.getItem('cmts')||'[]')
this.list = list
}
},
components:{
'cmt-box':commentBox,
}
})

</script>
</body>
</html>
展开
这个解答帮助过3342人

给你改了一下。

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>vue-test</title>
<script src="vue.js"></script>
</head>
<body>
<div id="app">
<cmt-box @func = "func"></cmt-box>

<ul>
<li v-for="item in list" :key="item.id">
<span class="bdge">评论人:{{item.user}}</span>-----{{item.id}}-----
{{item.content}}
</li>
</ul>

</div>
<template id="tmpl">
<div>
<div>
<label>评论人<input type="text" v-model="user"></label>
<label>评论内容<input type="text" v-model="content"></label>
<input type="button" value="submit" @click="postComment">
</div>
</div>
</template>
<script>
var commentBox={
data(){
return {
}
},
props:["user","content"],
template:'#tmpl',
methods:{
postComment:function(){
this.$emit('func',this.user,this.content);
}
}
}

var vm = new Vue({
el:'#app',
data:{
list:[
{id:1,user:'礼拜11',content:'我是谁1'},
{id:2,user:'礼拜12',content:'我是谁2'},
{id:3,user:'礼拜13',content:'我是谁3'}]
},
created(){
this.loadComments()
},
methods:{
loadComments: function(){
localStorage.setItem('cmts',JSON.stringify(this.list))
var list =JSON.parse(localStorage.getItem('cmts')||'[]')
this.list = list
},
func:function(user,content){
this.list.push({id:Date.now(),'user':user,'content':content})
}
},
components:{
'cmt-box':commentBox,
}
})

</script>
</body>
</html>

追问

哇。。谢谢,麻烦问下你贴的这个序号怎么弄的,还有就是我的代码的问题在哪里呀。。

追答

这里修改成这样 可以做到id自增

添加了子组件要传递的参数

修改了响应的方法,方法去修改数据list,修改后会自动显示到页面

追问

哦,这个我会,我问的是这个---

再问下我两个代码除了数据以外其他的一模一样,为什么浏览器分别打开后只显示一个的数据,另一个不显示?

追答

你说这个么?

用data now 会出现重复的数据,最好别用

这么搞好一点,不过一般都是从数据库取吧。

哈哈 其实 我也是昨天刚学的Vuejs

追问

嗯,,,这是什么插件?那个浏览器数据问题是怎么回事?两个文件读的都是一个list
这么厉害。。。你是干什么的?

追答

哈哈 刚装的插件 网页链接 自己跟着装吧

vuejs 主组件声明的data 和子组件用的是一个呀。

localStorage这个玩意一般都没啥用的。建议你别用,没必要。自己声明就好了。

我干开发的呀,java全栈

我是慕课网 搜了个免费视频 还行说的听清楚的 你有兴趣的话 自己看看吧

干开发的 Java全栈

vuejs主组件声明的data 自组建也是要使用的

更多追问

编辑时间 2019-01-04
影响力:4984

SVN报错:Error running context: The server unexpectedly closed the connection.

描述: svn服务已启动,但是仍然链接报错使用的https链接。环境是win10,求大神解答一下... svn服务已启动,但是仍然链接报错使用的https链接。环境是win10,求大神解答一下

这个解答帮助过3997人

可能程序不兼容, 可以更换个版本试试。另外建议参考下程序对配置的要求。
或者右键需要运行的程序 选择兼容性 用兼容模式运行试试。

编辑时间 2019-01-09
影响力:8480

syntax error, unexpected '>' in C:\phpStudy\PHPTutorial\WWW\test6.php on line 12

描述: <?php$cars=array(array("volvo",22,18),array("BMW",15,13),array("saab",5,2),array("LandRover",17,15),);for($row=0;row<4;$row++){echo"<p><b>Rownumber$row</b></p>echo"<ul>";... <?php
$cars=array
(
array("volvo",22,18),
array("BMW",15,13),
array("saab",5,2),
array("Land Rover",17,15),
);
for($row=0;row<4;$row++){
echo"<p><b>Row number
$row</b></p>
echo"<ul>"; 第十二行在这里
for($col=0;$col<3;$col++){
echo
"<li>".$cars[$row][$col]."</li>";
}
echo"</ul>";
}
?>

如上,哪里错了呢??
展开
这个解答帮助过4418人

错误行的上一行有错,末尾遗漏了引号和分号,因此程序认为报错行的echo"才是上一个引号的结束,而随后的内容不是分号和合法语句,因此报错。

编辑时间 2019-03-31