我正在aurelia中开发一个应用程序,我有一个直接的问题。这些绑定工作正常:
<input some-custom-attribute="name.bind: myName;"/>
这也是
<input some-custom-attribute="name: 'some name';"/>
但是关于对象。确实可行:
<input some-custom-attribute="options.bind: someObject;"/>
但这不是:
<input some-custom-attribute="options.bind: {inlineObject: 12};"/>
,还有(不是):
<input some-custom-attribute="options: {inlineObject: 12};"/>
那么如何在Aurelia的选项绑定中传递内联对象?