2016-05-17 22 views
-1

私はこのエラーを最初から受け取ります。修正する方法がわからない私はまた、割り当てや関数呼び出しを期待して、代わりに式を見た。言及識別子を期待し、代わりにあなたが<script>を配置する必要はありません「VAR」の.jsファイルで識別子が必要で、代わりに '<'と表示されました

<script> 
var interactiveSearch = {}; 
(function() { 
    interactiveSearch.common = { 
    init: function() { 
     interactiveSearch.common.setupDataTableDefaults(); 
     $.ajaxSetup({ 
     cache: false 
     }); 
    }, 
    setupDataTableDefaults: function() { 
     $.extend($.fn.dataTable.defaults, { 
     "sDom": "<'table-header-controls'<'row'<l><f>>r><i>t<'table-footer-controls'<'row'<'span12'p><'span12'i>>>", 
     "sPaginationType": "bootstrap", 
     "bJQueryUI": false, 
     "bProcessing": false, 
     "bServerSide": true, 
     "fnServerData": interactiveSearch.common.getTableData 
     }); 
    }, 
    getTableData: function(sSource, aoData, fnCallback) { 
     var data = new Array(); 
     var columnCount = _.find(aoData, function(o) { 
     return o.name == 'iColumns'; 
     }).value; 
     var echo = _.find(aoData, function(o) { 
     return o.name == 'sEcho'; 
     }).value; 
     var skip = _.find(aoData, function(o) { 
     return o.name == 'iDisplayStart'; 
     }).value; 
     var take = _.find(aoData, function(o) { 
     return o.name == 'iDisplayLength'; 
     }).value; 
     var search = _.find(aoData, function(o) { 
     return o.name == 'sSearch'; 
     }).value; 
     var sortCols = _.filter(aoData, function(o) { 
     return o.name.indexOf('iSortCol_') == 0; 
     }); 
     var sortDirs = _.filter(aoData, function(o) { 
     return o.name.indexOf('sSortDir_') == 0; 
     }); 
     var searches = _.filter(aoData, function(o) { 
     return o.name.indexOf('sSearch_') == 0; 
     }); 
     data.push({ 
     "name": "TableEcho", 
     "value": echo 
     }); 
     data.push({ 
     "name": "Skip", 
     "value": skip 
     }); 
     data.push({ 
     "name": "Take", 
     "value": take 
     }); 
     data.push({ 
     "name": "AllSearch", 
     "value": search 
     }); 
     var actual = 0; 
     _.each(sortCols, function(columnSort, sortIndex) { 
     var columnIndex = columnSort.value; 
     var columnSearch = searches[columnIndex].value; 
     var sortDir = sortDirs[sortIndex].value; 
     data.push({ 
      "name": "Columns[" + actual + "].ColumnIndex", 
      "value": columnIndex 
     }); 
     data.push({ 
      "name": "Columns[" + actual + "].SortDirection", 
      "value": sortDir 
     }); 
     if (columnSearch != '') { 
      data.push({ 
      "name": "Columns[" + actual + "].SearchTerm", 
      "value": columnSearch 
      }); 
     } 
     actual++; 
     }); 
     for (var i = 0; i < columnCount; i++) { 
     var searchTerm = searches[i].value; 
     if (searchTerm == '') { 
      continue; 
     } 
     data.push({ 
      "name": "Columns[" + actual + "].ColumnIndex", 
      "value": i 
     }); 
     data.push({ 
      "name": "Columns[" + actual + "].SearchTerm", 
      "value": searchTerm 
     }); 
     actual++; 
     } 
     $.post(sSource, data) 
     .success(fnCallback); 
    } 
    }; 
})(); 
$(function() { 
    interactiveSearch.common.init(); 
}); 
(function() { 
    var product = interactiveSearch.product = {}; 
    product.init = function() { 
    product.initDataTable(); 
    product.bindEvents(); 
    }; 

    function convertFullRowToDataObject(fullRow) { 
    return { 
     Id: fullRow[0], 
     ProductName: fullRow[1], 
     Synonym: fullRow[2], 
     Acronym: fullRow[3], 
     CasNo: fullRow[4], 
     EinecsNo: fullRow[5], 
     Formula: fullRow[6], 
     MolecularWeight: fullRow[7], 
     Status: fullRow[8], 
     MeltingPoint: fullRow[9], 
     BoilingPoint: fullRow[10], 
     HasDoc: fullRow[11] !== '', 
     RelatedDocPath: product.baseUrl + fullRow[11], 
     HasDImage: fullRow[12] !== '', 
     ImagePath: product.baseUrl + fullRow[12] 
    }; 
    } 
    product.initDataTable = function() { 
    product.productTable = $("#product-table").dataTable({ 
     aaSorting: [ 
     [1, "asc"] 
     ], 
     iDisplayLength: 15, 
     bServerSide: true, 
     bDestroy: true, 
     sAjaxSource: interactiveSearch.product.listUrl, 
     fnRowCallback: function(nRow, aData) { 
     $(nRow).data('rowInfo', convertFullRowToDataObject(aData)); 
     }, 
     aoColumns: [{ 
     sType: "string", 
     sClass: "dtAlignLeft", 
     mData: 1 
     }] 
    }); 
    }; 
    product.bindEvents = function() { 
    _.templateSettings = { 
     interpolate: /\{\{(.+?)\}\}/g, 
     evaluate: /\{\[([\s\S]+?)\]\}/g 
    }; 
    var templateText = $('#productDetailTemplate').html(), 
     compiledTemplate = _.template(templateText); 
    $(document).on('click', '#product-table tr', function(e) { 
     var el = $(this); 
     var rowData = el.data('rowInfo'); 
     var html = compiledTemplate(rowData); 
     $('#productDetailContainer').empty().html(html); 
     $('#product-table tr').removeClass('active'); 
     el.addClass('active'); 
    }); 
    $('#searchClone').on('keyup', function(e) { 
     var el = $(this); 
     var mimicEl = $('#product-table_filter input'); 
     mimicEl.val(el.val()).trigger('keyup'); 
    }) 
    $('.btn-reset-filter').on('click', function() { 
     $('#searchClone').val('').trigger('keyup'); 
    }); 
    }; 
})(); 
$(document).ready(function() { 
    interactiveSearch.product.listUrl = '/pa/Product/ListItems'; 
    interactiveSearch.product.baseUrl = '/pa/'; 
    interactiveSearch.product.init(); 
}); 
</script> 
+2

このすべては '.js'ファイルの中にありますか? –

+0

上記のエラーをどのラインで受け取りましたか? –

+1

これが '.js'ファイルにある場合は、コードの周りに' 'を入れてはいけません。これは、JavascriptをHTMLファイルに埋め込む場合にのみ使用されます。 – Barmar

答えて

1

を見て、あなたは自分のコードを書くことができます。ありません

<script>は、ページの中央にスクリプトを挿入する必要がある場合のHTMLファイル用です。

ファイル内で<script></script>を削除する必要があります。

+1

私はgdeleon101自身が[上記のコメント]で答えたので、これがどのように答えになるのかよくわかりません:(http://stackoverflow.com/questions/37285211/expected-an-identifier-and-instead-saw# comment62095701_37285211)。 'このコードはHTMLページの内部から取得されたものです。スタンドアロンの.jsファイルではありません。クライアントがエラーを起こしているのですが、私はその理由を理解しようとしています – fWd82

関連する問題