Наша команда Java работает над задачей, которая добавляет данные (которые находятся в URL) в таблицу HTML. URL вызывается триггером вставки БД.
Мы достигли до сих пор,
- Триггер вставки вызывает URL ( ссылка ).
- Используя
getparameter('Name')
, Team печатает значения в консоли.
- Попытка добавить данные в поля HTML.
Мы пытаемся добиться того, чтобы вновь вставленные записи необходимо отображать в браузере. Итак, нам нужна помощь.
Примечание:
- Если URL-адрес запускается в браузере напрямую, получается ожидаемый вывод.
- Файл JSP будет прикреплен в ближайшее время.
- Серверная часть: SQL Server 2014
- Front End:
JDK 1.8
и JRE 1.8
используются.
- Вставка произошла из другого приложения для обнаружения лица
подключен к SQL Server.
Обновление 1
Файл JSP выглядит,
<%
try{
String Path="";
String faceid=request.getParameter("faceid");
System.out.println("faceid faceidfaceidfaceid "+faceid);
String Nameval=request.getParameter("Name");
System.out.println("faceid Name "+Nameval);
String Recdate=request.getParameter("Recdate");
System.out.println("faceid Recdate "+Recdate);
String Event=request.getParameter("Event");
System.out.println("faceid Event "+Event);
String Status=request.getParameter("Status");
System.out.println("faceid Status "+Status);
String Gate=request.getParameter("Gate");
System.out.println("faceid Gate "+Gate);
Path=request.getParameter("Path");
System.out.println("faceid Path "+Path);
if(!Path.equalsIgnoreCase("undefined")||!Path.equalsIgnoreCase(""))
System.out.println(" enter if faceid Path ");
%>
<script>
var facerecoganize2="java";
var path1="<%=Path%>";
//alert("path1 "+path1);
var nameval="<%=Nameval%>";
var recdate="<%=Recdate%>";
var facerecoganize1="";
</script>
<script type="text/javascript">
//alert(facerecoganize2);
//$("#facedetection0").html(facerecoganize2);
//document.getElementById("facedetection0").innerHTML=facerecoganize2;
var testingfacecheck=[];
var arr=["#facedetection0","#facedetection1","#facedetection2","#facedetection3","#facedetection4","#facedetection5","#facedetection6","#facedetection7"];
//console.log(facerecoganize1);
$(document).ready(function() {
facerecoganize1 += "<img src='"+path1+"' alt='John' style='width:170px;height:190px;padding-top:5px;'>";
facerecoganize1 +="<div><span id='name' style='font-size:28px;font-weight:bold;'>'"+nameval+"'</span></div>";
facerecoganize1 +="<div><span style='font-size:24px;'>TIME:</span><span id='time' style='font-size:24px;'>'"+recdate+"'</span></div>";
facerecoganize1 +="<div class='container-fluid' style='background-color:green;margin-top:0px;text-align:center;'><i class='fa fa-check' style='font-size:26px;color:white;'>THANK YOU</i></div>";
testingfacecheck.unshift(facerecoganize1);
console.log(facerecoganize1);
var length=testingfacecheck.length;
//alert("Testinglength"+length);
});
</script>
Как и думал Дев, после <script type="text/javascript">
файл не может быть запущен.
Снимок экрана основного HTML-экрана.
Спасибо,
Pugal.