我需要一个帮助。我正在实现import os
from io import StringIO
os.environ['DJANGO_COLORS'] = 'nocolor'
from django.core.management import call_command
from django.apps import apps
from django.db import connection
commands = StringIO()
cursor = connection.cursor()
for app in apps.get_app_configs():
label = app.label
call_command('sqlsequencereset', label, stdout=commands)
cursor.execute(commands.getvalue())
以获取我的Angular应用程序中的时间间隔,但我没有得到任何这样的值。我正在解释下面的代码。
jquery.timepicker.js
我的控制器端代码如下所示。
<div class="input-group bmargindiv1 col-md-12">
<span class="input-group-addon ndrftextwidth text-right" style="width:180px">From Time :</span>
<input type="text" name="time" id="time" class="form-control oditek-form" placeholder="E.G-9.00AM" ng-model="time" ng-change="clearField('time');" maxlength="30" time-picker="" />
</div>
<div class="input-group bmargindiv1 col-md-12">
<span class="input-group-addon ndrftextwidth text-right" style="width:180px">To Time :</span>
<input type="text" name="time1" id="time1" class="form-control oditek-form" placeholder="E.G-9.00AM" ng-model="time1" ng-change="clearField('time1');" maxlength="30" time-picker="" />
</div>
</div>
<div style="text-align:center; padding:10px 0px;">
<input type="button" class="btn btn-success" ng-click="addTimeDetails();" id="saveData" value="Add" style="margin-right:20px;" />
</div>
此处我需要用户点击文本字段时间下拉菜单,点击添加按钮,所选时间将显示在console.MY完整代码为here in plunkr。请帮助我。
答案 0 :(得分:1)
将<html ng-model="spesh">
更改为<html ng-app="spesh">
以下是更好的解决方案:https://plnkr.co/edit/A0sSqXzx73XYn0f7UVGD?p=preview
当您需要ngModel时,您可以使用它的方法或读取值。您不需要阅读ngModel属性。
$ setViewValue(value,trigger); 更新视图值。
当控件想要更改视图时,应调用此方法 值;通常,这是在DOM事件处理程序中完成的。对于 例如,input指令在输入值时调用它 更改并选择在选择选项时调用它。