我正在使用ng-model取一个字符串值并将另一个输出到文本区域。在铬离子发射中一切都很好,没有错误。当我为ios或android构建时没有错误并且两者都成功构建,但是当我模拟它时没有输出并且ng-model没有填充文本区域。我无法弄清楚问题是什么建议?
我正在尝试运行以下代码。我允许用户输入一个字符串SQL语句,使用db.exec()来获取结果。当我做离子切断时,结果输出到屏幕,这非常有效。在ios或android
中模拟时它不起作用<input type='text' ng-model="sql"></input>
<button ng-click="clickHandler(sql)"; class="button button-positive" id="execute">
Execute
</button>
<h3>SQL Results</h3>
<div class="card">
<div class="item item-text-wrap">
{{value}}
</div>
</div>
$scope.clickHandler = function(model) {
console.log(model);
try {
db.run(model);// Run the query without returning anything
console.log('The db.run test successfully read from file')
} catch (err) {
console.log("error at db.run initial: " + err);
}
console.log('I have made it to this point');
$scope.value = db.exec(model);
}