我正在使用带有angularjs的中型编辑器,并且我试图在编辑器内部使用ng-click和ng-model进行2种方式绑定。
这是编辑器中的文字
<p>- <b>Some text here </b>
<p> <input type="number" ng-model="inputForEditor"> </p>
<p> <button class="btn is-small" ng-click="buttonForEditor('button clicked')">click inside the editor</button> </p>
<p>Some other text here</p>
在我的app.js中,我定义了$ scope.inputForEditor和$ scope.buttonForEditor,它们可以在编辑器外正常工作
有人知道我该怎么做吗?