我遇到了这个简单的问题。我正在学习ASP.NET MVC,我得到了这个表格。如何添加类"表单控件" DropDownList在其上应用样式。
这是代码的一部分:
public translateString(parameter: string): Observable<String> {
return this.translate.get(parameter);
}
// and then used like this:
SomeService.translateString('hello world')
.subscribe(message => {
console.log(message);
})