我有这一行:
$scope.campaingstartDate;
JSHint显示以下消息:
$scope.campaingstartDate;
^ Expected an assignment or function call and instead saw an expression.
我是Angular JS和JSHint的新手,所以我该怎么做才能解决这个问题呢?
答案 0 :(得分:0)
如果您按预期编码工作,但您认为jshint太严格"严格"或者对于该行代码表现不佳,您可以使用以下注释来忽略来自jshint的警告:
$scope.campaingstartDate; // jshint ignore:line
或者,您可以按照此页面上的建议分配默认值。
$scope.campaingstartDate = ''; // add any value as default for your property here