foreach (var item in Model ?? Enumerable.Empty <ModelData>())
{
...
}
2013年4月18日
ASP.NET MVC foreach with null para
Visual SVN on Windows
Visual SVN server 安裝在 Windows系統上時
使用者即使沒有 Repositoris的權限, 只要存取路徑變更大小寫一樣可以存取 ...
雖然 Windows的檔案系統就會區分, 不能建同名但大小寫不同的資料夾
source: http://tortoisesvn.tigris.org/faq.zh.html
使用者即使沒有 Repositoris的權限, 只要存取路徑變更大小寫一樣可以存取 ...
雖然 Windows的檔案系統就會區分, 不能建同名但大小寫不同的資料夾
source: http://tortoisesvn.tigris.org/faq.zh.html
2013年4月16日
2013年4月15日
2013年4月8日
Django 練習 #005 Ajax Post & HttpResponse
如果沒有做任何設定
在 Django內使用 Ajax Post遞交 request會有 CSRF的問題
(Cross Site Request Forgery protection)
在網路上查到的解法大部分是將一個 crsf_token值也當作 post的參數
藉以通過 Django的檢查
不過我怎麼設定都沒成功過
於是採用另一種方式
讓指定的 View(controller) Action忽略 CRSF
這部分可以參考 django_AJAX
View:
在 Django內使用 Ajax Post遞交 request會有 CSRF的問題
(Cross Site Request Forgery protection)
在網路上查到的解法大部分是將一個 crsf_token值也當作 post的參數
藉以通過 Django的檢查
不過我怎麼設定都沒成功過
於是採用另一種方式
讓指定的 View(controller) Action忽略 CRSF
這部分可以參考 django_AJAX
View:
from django.views.decorators.csrf import csrf_exempt
from django.http import HttpResponse
@csrf_exempt
def CreateArticle(request):
return HttpResponse('true')