我想創建一個簡單的驗證來要求名稱(稍後會添加更多的驗證)。該應用程序是一個燼應用程序,我們想要使用jquery validation。如何正確使用emberjs上的jquery-validation?
我有麻煩只是爲了得到一個基本的驗證運行。這是我有:
//index.html
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="http://ajax.aspnetcdn.com/ajax/jquery.validate/1.8.1/jquery.validate.min.js"></script>
...
//body and such//
...
<script>
$('#salesForm').validate();
</script>
</body>
一個組件內,說銷售形式:
//app/components/sales-form/template.emblem
form id="salesForm"
...
.form-group
label Some Sales Info
= input type="text" disabled=false value=salesNumber placeholder="Sales Number" class="form-control" required
button{action: 'clickNSave'}
...
這給了我一個編譯錯誤,因爲標誌並不輸入識別required
。
如何創建一個簡單的驗證使用jquery-validation在模板上使用emblem的應用程序應用程序?
附加問題,我的驗證index.html
是否正確,在關閉body標籤之前在最後運行驗證?如果沒有,插入$('#someForm').validate();
的最佳方法在哪裏?