2014-03-30 42 views
1

我有ezSearch(一把umbraco)的一些問題,這是非常類似於這樣一個錯誤加載局部視圖腳本(文件:〜/查看/ MacroPartials/ezSearch.cshtml)

http://our.umbraco.org/projects/website-utilities/ezsearch/bugs-feedback-suggestions/48460-Search-error-when-searching-for-test-keyword?p=0#comment176864 下面是截圖錯誤

http://our.umbraco.org/media/upload/e08b702e-b738-42a4-81d8-382a4400b96a/error.jpg

誰能HEP我這個好嗎?

謝謝 阿迪我使用ezSearch,並從閱讀ezSearch.cshtml這看起來像一個錯誤,如果傳遞給宏查詢「」

+0

有什麼建議嗎? BR,Adi – user3478244

回答

1

。也就是說,如果搜索是空的,它工作正常,但如果搜索是一個實際的報價空間,然後在CSHTML行:(在我的版本線60)

// Check the search term isn't empty 
if(!string.IsNullOrWhiteSpace(model.SearchTerm)) 
{ 
    // Tokenize the search term 
    model.SearchTerms = Tokenize(model.SearchTerm); 
... 
etc. 
... 
} 

一個壞的結束在model.SearchTerms中設置標記。

這是一個黑客攻擊的一位,但我認爲把這個之前如果聲明將幫助。

​​

..希望有幫助。

'ingie。