我花了很多时间来解决这个问题.
我有一个数据类:
public class User : INotifyPropertyChanged
{
private int _key;
private string _fullName;
private string _nick;
public int Key
{
get{return _key;}
set { _key = value; NotifyPropertyChanged("Key"); }
}
public string Nick
{
get { return _nick; }
set { _nick = value; NotifyPropertyChanged("Nick"); }
}
public string FullName
{
get { return _fullName; }
set { _fullName = value; NotifyPropertyChanged("FullName"); }
}
public User()
{
Nick = "nickname";
FullName = "fullname";
}
public User(String nick, String name, …
Run Code Online (Sandbox Code Playgroud) 这甚至可能吗?
我不确定,如果我正确理解这个项目。我正在尝试使用 Parsoid-JSAPI 项目将大量 wikitext 解析为 html。
解析工作正常,但它仍在调用维基媒体 API。我已经在本地运行服务器,但该库仍在使用公共 Internet API 而不是我的本地服务器。如果我尝试指定域,调用Parsoid.parse("wikitext", {domain: 'localhost'})
,它说No API URI available for prefix: null; domain: localhost
我的 config.yaml:
mwApis:
uri: 'http://localhost/w/api.php'
domain: 'localhost'
Run Code Online (Sandbox Code Playgroud)