我正在开发以前在Backbonejs和MVC上构建的项目。我是骨干的新手
现在我需要用MVC视图中的下拉列表替换一个文本框
<input type="text" data-field-key="totalExp" id="user-data-total-exp" class="form-control disabled-for-edit-locked" value="" />
我替换为
<select id="exp-year" class="form-control exp-year">
<option value=''>Years</option>
</select>
但在骨干视图中,他们将文本框屏蔽为仅接受数字
function ($, _, FormView) {
var EditExternalUserView = FormView.View.extend({
initialize: function (options) {this.$("#user-data-total-exp, #user-data-relevant-exp").mask("00.00", { reverse: true });//some other code}
如何将数据绑定到在backbonejs的视图或模型下拉
我需要在该下拉列表中显示0-12个数字。
答案 0 :(得分:-1)
我找到了解决方法,
this.model.set("Nameofdropdown", _.range(0, 12));