jsp頁面的html代碼顯示不出來,提示Uncaught SyntaxError: Unexpected token <html
<input type="hidden" name="flowBranchId" value="${flowBranch.flowUserId}"/>jsp
上面的flowUserId,在傳過來的flowBranch中不存在。spa
改成正確的:htm
<input type="hidden" name="flowBranchId" value="${flowBranch.flowBranchId}"/>token
就能夠了。input