Я получаю сообщение об ошибке в консоли браузера
POST https://localhost:44351/Common/SearchAvailableTechList 500(Internal Server Error)
Файл SignalR javascript Код:
function TechList(Id, Id2, Id3) {
if (Id!= "" && Id2!= "") {
$.ajax({
url: $("#TechListUrl").val(),
type: "post",
dataType: "json",
после объединения в javascript, это выглядит так:
function TechList(n, t, i) {
n != "" && t != "" && $.ajax({
url: $("#TechListUrl").val(),
type: "post",
dataType: "json",
Как получить после комплектации:
function TechList(n, t, i) {
(n != "" && t != "")
{
$.ajax({
url: $("#TechListUrl").val(),
type: "post",
dataType: "json",